﻿@charset "UTF-8";
.scale-icon {
  -webkit-transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.scale-icon:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1); }

.fleche {
  position: absolute;
  bottom: -80px;
  left: 50%;
}

.jumping {
  -webkit-animation-name: jumping;
          animation-name: jumping; }

.animation-fleche {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  background-color: transparent; }

@-webkit-keyframes jumping {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); } }

@keyframes jumping {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); } }

.animation-element {
  opacity: 0;
  position: relative; }
  .animation-element.slide-right, .animation-element.slide-left {
    -webkit-transition: all 700ms linear;
    transition: all 700ms linear; }
    .animation-element.slide-right.in-view, .animation-element.slide-left.in-view {
      opacity: 1;
      -webkit-transform: translate3d(0px, 0px, 0px);
              transform: translate3d(0px, 0px, 0px); }
  .animation-element.slide-left {
    -webkit-transform: translate3d(-100px, 0px, 0px);
            transform: translate3d(-100px, 0px, 0px); }
  .animation-element.slide-right {
    -webkit-transform: translate3d(100px, 0px, 0px);
            transform: translate3d(100px, 0px, 0px); }

.bounce-up {
  opacity: 0;
  -webkit-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  -webkit-transform: translate3d(0px, 200, 0px);
          transform: translate3d(0px, 200, 0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .bounce-up.in-view {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px); }

.floating-cloud {
  -webkit-animation: d 3s ease-in-out infinite, d-rotate 3s ease-in-out infinite;
          animation: d 3s ease-in-out infinite, d-rotate 3s ease-in-out infinite;
  max-width: 103px;
  padding-bottom: 10px; }
  .floating-cloud.delayed {
    -webkit-animation: d 3s ease infinite, d-rotate 3s ease infinite;
            animation: d 3s ease infinite, d-rotate 3s ease infinite; }

@-webkit-keyframes fadeIn_in {
  0% {
    opacity: 0; }
  40% {
    opacity: 0.3; }
  80% {
    opacity: 0.9; }
  100% {
    opacity: 1; } }

@keyframes fadeIn_in {
  0% {
    opacity: 0; }
  40% {
    opacity: 0.3; }
  80% {
    opacity: 0.9; }
  100% {
    opacity: 1; } }

/* ====================================================
   DUAL BACKGROUND GRADIENT
   ==================================================== */
/*
 * This mixin will create a vertical solid gradient
 * from top To bottom and with fallback.
 * Usage: @include linearGradient($,$);
 *
 */
/* ====================================================
   COLOR STYLE GUIDE
   ==================================================== */
/*
 * This mixin will allow us to build
 * attributes with our color style guide
 *
 */
.black-sg {
  color: #0b0b0b;
  background: #0b0b0b;
  border-color: #0b0b0b; }

.white-sg {
  color: #ffffff;
  background: #ffffff;
  border-color: #ffffff; }

.grey-sg {
  color: #333333;
  background: #333333;
  border-color: #333333; }

.lightgrey-sg {
  color: #d4d4d4;
  background: #d4d4d4;
  border-color: #d4d4d4; }

.confirm-sg {
  color: #59cc2f;
  background: #59cc2f;
  border-color: #59cc2f; }

.warning-sg {
  color: #ffb413;
  background: #ffb413;
  border-color: #ffb413; }

.alert-sg {
  color: #ff001e;
  background: #ff001e;
  border-color: #ff001e; }

.bg-dark-sg {
  color: #dae4ef;
  background: #dae4ef;
  border-color: #dae4ef; }

.bg-light-sg {
  color: #e4ecf4;
  background: #e4ecf4;
  border-color: #e4ecf4; }

.primary-sg {
  color: #025091;
  background: #025091;
  border-color: #025091; }

.primary-is-active-sg {
  color: #023866;
  background: #023866;
  border-color: #023866; }

.secondary-sg {
  color: #3dabe8;
  background: #3dabe8;
  border-color: #3dabe8; }

.blue-sg {
  color: #35a4dd;
  background: #35a4dd;
  border-color: #35a4dd; }

.blue-is-active-sg {
  color: #267fab;
  background: #267fab;
  border-color: #267fab; }

.red-sg {
  color: #e30613;
  background: #e30613;
  border-color: #e30613; }

.red-is-active-sg {
  color: #c00d0d;
  background: #c00d0d;
  border-color: #c00d0d; }

.green-sg {
  color: #6ac212;
  background: #6ac212;
  border-color: #6ac212; }

.green-is-active-sg {
  color: #4e8f0d;
  background: #4e8f0d;
  border-color: #4e8f0d; }






.button, .button-blue, .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton, .button-blue-ghost, .button-red, .button-red-ghost, .button-gold, .button-gold__ghost, .button-green, .voip-legal form.voip-legal-form .input-row input[type=submit], .button-green-ghost, .button-white, .button-gray, .button-primary-ghost {
  /* this class is being extended for all buttons. do not use for other purposes */
  border: none;
  font-family: inherit;
  font-size: 14px;
  color: #ffffff;
  background: none;
  cursor: pointer;
  padding: 13px 34px;
  display: inline-block;
  border-radius: 3px 3px 5px 5px;
  letter-spacing: 1px;
  font-weight: 700;
  outline: none;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  @media screen and (min-width: 768px) {
    .button, .button-blue, .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton, .button-blue-ghost, .button-red, .button-red-ghost, .button-gold, .button-gold__ghost, .button-green, .voip-legal form.voip-legal-form .input-row input[type=submit], .button-green-ghost, .button-white, .button-gray, .button-primary-ghost {
      font-size: 16px; } }
  .button:hover, .button-blue:hover, .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton:hover, .button-blue-ghost:hover, .button-red:hover, .button-red-ghost:hover, .button-gold:hover, .button-gold__ghost:hover, .button-green:hover, .voip-legal form.voip-legal-form .input-row input:hover[type=submit], .button-green-ghost:hover, .button-white:hover, .button-gray:hover, .button-primary-ghost:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 4px #333333;
            box-shadow: 0 4px #333333;
    top: 2px; }
  .button:active, .button-blue:active, .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton:active, .button-blue-ghost:active, .button-red:active, .button-red-ghost:active, .button-gold:active, .button-gold__ghost:active, .button-green:active, .voip-legal form.voip-legal-form .input-row input:active[type=submit], .button-green-ghost:active, .button-white:active, .button-gray:active, .button-primary-ghost:active {
    color: #ffffff;
    -webkit-box-shadow: 0 0 #333333;
            box-shadow: 0 0 #333333;
    top: 6px; }
  .button:visited, .button-blue:visited, .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton:visited, .button-blue-ghost:visited, .button-red:visited, .button-red-ghost:visited, .button-gold:visited, .button-gold__ghost:visited, .button-green:visited, .voip-legal form.voip-legal-form .input-row input:visited[type=submit], .button-green-ghost:visited, .button-white:visited, .button-gray:visited, .button-primary-ghost:visited {
    color: #ffffff; }
  .button:focus, .button-blue:focus, .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton:focus, .button-blue-ghost:focus, .button-red:focus, .button-red-ghost:focus, .button-gold:focus, .button-gold__ghost:focus, .button-green:focus, .voip-legal form.voip-legal-form .input-row input:focus[type=submit], .button-green-ghost:focus, .button-white:focus, .button-gray:focus, .button-primary-ghost:focus {
    color: #ffffff; }
  .button:after, .button-blue:after, .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton:after, .button-blue-ghost:after, .button-red:after, .button-red-ghost:after, .button-gold:after, .button-gold__ghost:after, .button-green:after, .voip-legal form.voip-legal-form .input-row input[type=submit]:after, .button-green-ghost:after, .button-white:after, .button-gray:after, .button-primary-ghost:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }

.button-blue, .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton {
  background: #35a4dd;
  -webkit-box-shadow: 0 6px #267fab;
          box-shadow: 0 6px #267fab; }
  .button-blue:hover, .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton:hover {
    -webkit-box-shadow: 0 4px #267fab;
            box-shadow: 0 4px #267fab; }
  .button-blue:active, .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton:active {
    -webkit-box-shadow: 0 0 #267fab;
            box-shadow: 0 0 #267fab; }

.button-blue-ghost {
  background: transparent;
  border: 1px solid #35a4dd;
  color: #35a4dd;
  -webkit-box-shadow: 0 6px #267fab;
          box-shadow: 0 6px #267fab; }
  .button-blue-ghost:hover {
    -webkit-box-shadow: 0 4px #267fab;
            box-shadow: 0 4px #267fab;
    color: #35a4dd; }
  .button-blue-ghost:active {
    -webkit-box-shadow: 0 0 #267fab;
            box-shadow: 0 0 #267fab;
    color: #35a4dd; }
  .button-blue-ghost:visited,
  .button-blue-ghost :focus,
  .button-blue-ghost :visited {
    color: #35a4dd !important; }
  .button-blue-ghost:focus {
    color: #35a4dd; }

.button-red {
  background: #e30613;
  -webkit-box-shadow: 0 6px #c00d0d;
          box-shadow: 0 6px #c00d0d; }
  .button-red:hover {
    -webkit-box-shadow: 0 4px #c00d0d;
            box-shadow: 0 4px #c00d0d; }
  .button-red:active {
    -webkit-box-shadow: 0 0 #c00d0d;
            box-shadow: 0 0 #c00d0d; }

.button-red-ghost {
  background: transparent;
  border: 1px solid #e30613;
  color: #e30613;
  -webkit-box-shadow: 0 6px #c00d0d;
          box-shadow: 0 6px #c00d0d; }
  .button-red-ghost:hover {
    -webkit-box-shadow: 0 4px #c00d0d;
            box-shadow: 0 4px #c00d0d;
    color: #e30613; }
  .button-red-ghost:active {
    -webkit-box-shadow: 0 0 #c00d0d;
            box-shadow: 0 0 #c00d0d;
    color: #e30613; }
  .button-red-ghost:visited,
  .button-red-ghost :focus,
  .button-red-ghost :visited {
    color: #e30613; }
  .button-red-ghost:focus {
    color: #e30613; }
  .button-red-ghost.full {
    display: block;
    text-align: center; }

.button-gold {
  background: #f8aa00;
  -webkit-box-shadow: 0 6px #926400;
          box-shadow: 0 6px #926400; }
  .button-gold:hover {
    -webkit-box-shadow: 0 4px #926400;
            box-shadow: 0 4px #926400; }
  .button-gold:active {
    -webkit-box-shadow: 0 0 #926400;
            box-shadow: 0 0 #926400;
    color: #ffffff; }
  .button-gold:focus {
    outline: none;
    color: #ffffff; }

.button-gold__ghost {
  background: transparent;
  border: 1px solid #f8aa00;
  color: #025091;
  letter-spacing: -1px; }
  .button-gold__ghost:hover {
    -webkit-box-shadow: 0 4px #f8aa00;
            box-shadow: 0 4px #f8aa00;
    color: #025091; }
  .button-gold__ghost:active {
    -webkit-box-shadow: 0 0 #f8aa00;
            box-shadow: 0 0 #f8aa00;
    color: #025091; }
  .button-gold__ghost:visited {
    color: #025091; }

.button-green, .voip-legal form.voip-legal-form .input-row input[type=submit] {
  background: #6ac212;
  -webkit-box-shadow: 0 6px #4e8f0d;
          box-shadow: 0 6px #4e8f0d; }
  .button-green:hover, .voip-legal form.voip-legal-form .input-row input:hover[type=submit] {
    -webkit-box-shadow: 0 4px #4e8f0d;
            box-shadow: 0 4px #4e8f0d; }
  .button-green:active, .voip-legal form.voip-legal-form .input-row input:active[type=submit] {
    -webkit-box-shadow: 0 0 #4e8f0d;
            box-shadow: 0 0 #4e8f0d; }

.button-green-ghost {
  background: transparent;
  border: 1px solid #6ac212;
  color: #6ac212;
  -webkit-box-shadow: 0 6px #4e8f0d;
          box-shadow: 0 6px #4e8f0d; }
  .button-green-ghost:hover {
    -webkit-box-shadow: 0 4px #4e8f0d;
            box-shadow: 0 4px #4e8f0d;
    color: #6ac212; }
  .button-green-ghost:active {
    -webkit-box-shadow: 0 0 #4e8f0d;
            box-shadow: 0 0 #4e8f0d;
    color: #6ac212; }
  .button-green-ghost:visited,
  .button-green-ghost :focus,
  .button-green-ghost :visited {
    color: #6ac212; }
  .button-green-ghost:focus {
    color: #6ac212; }

.button-white {
  color: #35a4dd !important;
  background: #ffffff;
  -webkit-box-shadow: 0 6px #f2f2f2;
          box-shadow: 0 6px #f2f2f2;
  border: 1px solid #f2f2f2; }
  .button-white:hover {
    -webkit-box-shadow: 0 4px #ffffff;
            box-shadow: 0 4px #ffffff; }
  .button-white:active {
    -webkit-box-shadow: 0 0 #ffffff;
            box-shadow: 0 0 #ffffff; }

.button-gray {
  color: #333333 !important;
  background: #ffffff;
  -webkit-box-shadow: 0 6px #333333;
          box-shadow: 0 6px #333333;
  border: 1px solid #333333; }
  .button-gray:hover {
    -webkit-box-shadow: 0 4px #ffffff;
            box-shadow: 0 4px #ffffff; }
  .button-gray:active {
    -webkit-box-shadow: 0 0 #ffffff;
            box-shadow: 0 0 #ffffff; }

/*
.glow-btn {
  color: $secondary;
  border: 2px solid $secondary;
  padding: 10px 20px;
  font-family: 'MuseoSans-300';
  letter-spacing: -.5px;
  &:hover {
    border-color: $primary;
  }
}*/
.download-cta, .watch-cta, .watch-cta-white, .download-cta-orange {
  background: #023866;
  color: #ffffff;
  display: inline-block;
  border: none;
  padding: 10px 72px 10px 25px;
  font-family: "ProximaNova", arial, sans-serif;
  font-size: 16px;
  margin: 0 20px;
  line-height: 28px;
  position: relative;
  cursor: pointer; }
  .download-cta:hover, .watch-cta:hover, .watch-cta-white:hover, .download-cta-orange:hover {
    background: #025091;
    color: #ffffff; }
    .download-cta:hover:before, .watch-cta:hover:before, .watch-cta-white:hover:before, .download-cta-orange:hover:before {
      content: " ";
      background: #023866 url("https://images.apps4.com/images/svg-website/down-arrow.svg") center center no-repeat;
      background-size: 15px;
      width: 45px;
      height: 48px;
      position: absolute;
      right: 0;
      top: 0; }
  .download-cta:before, .watch-cta:before, .watch-cta-white:before, .download-cta-orange:before {
    content: " ";
    background: #025091 url("https://images.apps4.com/images/svg-website/down-arrow.svg") center center no-repeat;
    background-size: 15px;
    width: 45px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out; }

.watch-cta:hover:before {
  background: #023866 url("https://images.apps4.com/images/svg-website/play-arrow.svg") center center no-repeat;
  background-size: 22px; }

.watch-cta:before {
  background: #025091 url("https://images.apps4.com/images/svg-website/play-arrow.svg") center center no-repeat;
  background-size: 22px; }

.watch-cta-white {
  background: #ffffff;
  color: #025091; }
  .watch-cta-white:hover {
    background: #3dabe8; }
    .watch-cta-white:hover:before {
      background: white url("https://images.apps4.com/images/partners/trigger-video-darkBlue.png") center center no-repeat;
      border-left: 1px solid #025091;
      background-size: 22px; }
  .watch-cta-white:before {
    background: white url("https://images.apps4.com/images/partners/trigger-video-darkBlue.png") center center no-repeat;
    background-size: 22px;
    border-left: 1px solid #025091; }

.download-cta-orange {
  background: #e30613; }
  .download-cta-orange:hover {
    background: #c00d0d; }
    .download-cta-orange:hover:before {
      background: #e30613 url("https://images.apps4.com/images/website_images/icon-infokit.png") center center no-repeat;
      border-left: 1px solid #c00d0d;
      background-size: 22px; }
  .download-cta-orange:before {
    background: #e30613 url("https://images.apps4.com/images/website_images/icon-infokit.png") center center no-repeat;
    background-size: 22px;
    border-left: 1px solid #c00d0d; }

.register-button {
  color: #025091;
  text-decoration: none;
  border: 3px solid #6ac212;
  padding: 10px;
  display: inline-block;
  margin: 20px 0;
  font-family: "ProximaNova";
  font-size: 15px;
  -webkit-transition: all 0.14s ease 0s;
  transition: all 0.14s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s; }
  .register-button:hover {
    color: #ffffff;
    background: #025091;
    border: 3px solid #025091; }
  .register-button.soft-blue {
    color: #ffffff;
    border: 0;
    padding: 15px 90px;
    background: #3dabe8;
    font-size: 20px; }
    .register-button.soft-blue:hover {
      background: #025091;
      text-decoration: none; }

/*===================================================
apps4 CASE STUDIES MODULE BUTTONS
====================================================*/
.solid-blue-btn,
.blue-btn,
.orange-btn {
  padding: 10px 40px;
  display: inline-block;
  border: none;
  font-family: "MuseoSans-300", arial, sans-serif;
  -webkit-transition: all 0.14s ease 0s;
  transition: all 0.14s ease 0s;
  color: #ffffff;
  font-size: 18px; }

.solid-blue-btn {
  background: #025091; }
  .solid-blue-btn:hover {
    background: #01345f;
    color: #ffffff;
    text-decoration: none; }

.blue-btn {
  background: #6ac212;
  text-transform: none; }
  .blue-btn:hover {
    background: #025091;
    color: #ffffff;
    text-decoration: none; }

.orange-btn {
  background: #e30613; }
  .orange-btn:hover {
    background: #c00d0d;
    color: #ffffff;
    text-decoration: none; }

.blue-ghost-btn,
.blue-light-ghost-btn,
.orange-ghost-btn,
.big-blue-ghost-btn,
.big-blue-btn,
.white-btn {
  font-family: "MuseoSans-300", arial, sans-serif;
  display: inline-block;
  -webkit-transition: all 0.14s ease 0s;
  transition: all 0.14s ease 0s;
  cursor: pointer;
  font-size: 18px; }
  .blue-ghost-btn:hover,
  .blue-light-ghost-btn:hover,
  .orange-ghost-btn:hover,
  .big-blue-ghost-btn:hover,
  .big-blue-btn:hover,
  .white-btn:hover {
    text-decoration: none;
    color: #ffffff; }

.blue-ghost-btn,
.blue-light-ghost-btn,
.big-blue-ghost-btn,
.white-btn {
  color: #025091; }

.blue-ghost-btn {
  border: 3px solid #6ac212;
  padding: 7px 60px; }
  .blue-ghost-btn:hover {
    background: #025091;
    border: 3px solid #025091; }

.blue-light-ghost-btn {
  border: 1.5px solid #6ac212;
  padding: 7px 35px; }
  .blue-light-ghost-btn:hover {
    background: #6ac212;
    border: 1.5px solid #6ac212; }

.orange-ghost-btn {
  border: 2px solid #e30613;
  padding: 15px 40px;
  color: #e30613; }
  .orange-ghost-btn:hover {
    background: #e30613;
    border: 2px solid #e30613; }

.big-blue-ghost-btn {
  border: 3px solid #6ac212;
  padding: 15px 60px; }
  .big-blue-ghost-btn:hover {
    background: #025091;
    border: 3px solid #025091; }

.big-blue-btn {
  background: #6ac212;
  color: #ffffff;
  border: none;
  padding: 15px 60px; }
  .big-blue-btn:hover {
    background: #025091; }

.white-btn {
  background: #ffffff;
  padding: 10px 40px; }
  .white-btn:hover {
    background: #3dabe8; }

.btn-case-study {
  position: absolute;
  top: inherit !important;
  bottom: 30px;
  right: 30px; }

@media screen and (max-width: 370px) {
  .orange-btn {
    padding: 10px 20px;
    font-size: 14px; } }

.button-green-ghost {
  border: 1px solid #6ac212;
  -webkit-box-shadow: 0 4px #6ac212;
          box-shadow: 0 4px #6ac212; }
  .button-green-ghost:hover {
    -webkit-box-shadow: 0 4px #58a10f;
            box-shadow: 0 4px #58a10f; }

.button-primary-ghost {
  color: #025091 !important;
  background: #ffffff;
  border: 1px solid #025091;
  -webkit-box-shadow: 0 4px #025091;
          box-shadow: 0 4px #025091; }
  .button-primary-ghost:hover {
    -webkit-box-shadow: 0 4px #023d6e;
            box-shadow: 0 4px #023d6e; }

/*=================================
apps4 CUSTOM GRID SYSTEM
===================================*/
.frame [class*='c-'], .frame-table [class*='c-'], .frame-fullwidth [class*='c-'] {
  float: left; }

.frame, .frame-table, .frame-fullwidth, .frame-flex {
  margin: 0 auto;
  /*&.eighty {
        position: relative;
        max-width: 1400px;
    }*/ }
  .frame [class*='c-'], .frame-table [class*='c-'], .frame-fullwidth [class*='c-'], .frame-flex [class*='c-'] {
    padding: 1em; }
  .frame:after, .frame-table:after, .frame-fullwidth:after, .frame-flex:after {
    clear: both;
    content: "";
    display: table; }

.frame, .frame-table, .frame-flex {
  max-width: 1270px; }

.frame-fullwidth {
  max-width: 100%; }

.frame-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left; }
  .frame-flex .first,
  .frame-flex .second {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 50%; }
  .frame-flex .second.one-third {
    width: 30%; }
  .frame-flex .first.two-third {
    width: 70%; }
  @media (min-width: 801px) {
    .frame-flex .max-container {
      max-width: 455px; } }
  .frame-flex .max-container .museo-title {
    padding-bottom: 10px; }
  .frame-flex .align-start {
    -ms-flex-item-align: start;
        align-self: flex-start; }

.frame-flex .first,
.frame-flex .second,
.frame-flex .box {
  padding: 0 .7em; }
  .frame-flex .first .box__content,
  .frame-flex .second .box__content,
  .frame-flex .box .box__content {
    background: #ffffff;
    padding: 30px; }

.frame-flex .box__full {
  width: 100%; }

.frame-flex .box__half {
  width: 50%; }

@media only screen and (max-width: 50em) {
  .frame-flex .first,
  .frame-flex .second,
  .frame-flex .box__half,
  .frame-flex .first.two-third,
  .frame-flex .second.one-third {
    width: 100%;
    text-align: center; }
  .frame-flex .go_after {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .frame-flex img {
    padding: 10px; } }

.three-cols {
  -webkit-column-count: 1;
          column-count: 1; }
  @media screen and (min-width: 768px) {
    .three-cols {
      -webkit-column-count: 2;
              column-count: 2; } }
  @media screen and (min-width: 992px) {
    .three-cols {
      -webkit-column-count: 3;
              column-count: 3; } }

@media screen and (min-width: 992px) {
  .col-fix li:nth-child(3) {
    margin: -1px; } }

.c-1 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-1 .c-2,
    .c-1 .c-4,
    .c-1 .c-6,
    .c-1 .c-8,
    .c-1 .c-10,
    .c-1 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-1 {
      width: 100% !important; } }

@media screen and (min-width: 992px) {
  .push-1 {
    margin-left: 8.33333% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-2 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-2 .c-2,
    .c-2 .c-4,
    .c-2 .c-6,
    .c-2 .c-8,
    .c-2 .c-10,
    .c-2 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-2 {
      width: 50% !important; } }

@media screen and (min-width: 992px) {
  .push-2 {
    margin-left: 16.66667% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-3 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-3 .c-2,
    .c-3 .c-4,
    .c-3 .c-6,
    .c-3 .c-8,
    .c-3 .c-10,
    .c-3 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-3 {
      width: 33.33333% !important; } }

@media screen and (min-width: 992px) {
  .push-3 {
    margin-left: 25% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-4 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-4 .c-2,
    .c-4 .c-4,
    .c-4 .c-6,
    .c-4 .c-8,
    .c-4 .c-10,
    .c-4 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-4 {
      width: 25% !important; } }

@media screen and (min-width: 992px) {
  .push-4 {
    margin-left: 33.33333% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-5 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-5 .c-2,
    .c-5 .c-4,
    .c-5 .c-6,
    .c-5 .c-8,
    .c-5 .c-10,
    .c-5 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-5 {
      width: 20% !important; } }

@media screen and (min-width: 992px) {
  .push-5 {
    margin-left: 41.66667% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-6 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-6 .c-2,
    .c-6 .c-4,
    .c-6 .c-6,
    .c-6 .c-8,
    .c-6 .c-10,
    .c-6 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-6 {
      width: 16.66667% !important; } }

@media screen and (min-width: 992px) {
  .push-6 {
    margin-left: 50% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-7 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-7 .c-2,
    .c-7 .c-4,
    .c-7 .c-6,
    .c-7 .c-8,
    .c-7 .c-10,
    .c-7 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-7 {
      width: 14.28571% !important; } }

@media screen and (min-width: 992px) {
  .push-7 {
    margin-left: 58.33333% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-8 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-8 .c-2,
    .c-8 .c-4,
    .c-8 .c-6,
    .c-8 .c-8,
    .c-8 .c-10,
    .c-8 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-8 {
      width: 12.5% !important; } }

@media screen and (min-width: 992px) {
  .push-8 {
    margin-left: 66.66667% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-9 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-9 .c-2,
    .c-9 .c-4,
    .c-9 .c-6,
    .c-9 .c-8,
    .c-9 .c-10,
    .c-9 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-9 {
      width: 11.11111% !important; } }

@media screen and (min-width: 992px) {
  .push-9 {
    margin-left: 75% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-10 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-10 .c-2,
    .c-10 .c-4,
    .c-10 .c-6,
    .c-10 .c-8,
    .c-10 .c-10,
    .c-10 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-10 {
      width: 10% !important; } }

@media screen and (min-width: 992px) {
  .push-10 {
    margin-left: 83.33333% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-11 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-11 .c-2,
    .c-11 .c-4,
    .c-11 .c-6,
    .c-11 .c-8,
    .c-11 .c-10,
    .c-11 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-11 {
      width: 9.09091% !important; } }

@media screen and (min-width: 992px) {
  .push-11 {
    margin-left: 91.66667% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-12 {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .c-12 .c-2,
    .c-12 .c-4,
    .c-12 .c-6,
    .c-12 .c-8,
    .c-12 .c-10,
    .c-12 .c-12 {
      width: 50%; } }
  @media screen and (min-width: 992px) {
    .c-12 {
      width: 8.33333% !important; } }

@media screen and (min-width: 992px) {
  .push-12 {
    margin-left: 100% !important; } }

@media screen and (min-width: 992px) {
  .c-10 {
    width: 10% !important; } }

.c-10 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-10 {
      width: 10%; } }

.c-11 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-11 {
      width: 11%; } }

.c-12 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-12 {
      width: 12%; } }

.c-13 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-13 {
      width: 13%; } }

.c-14 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-14 {
      width: 14%; } }

.c-15 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-15 {
      width: 15%; } }

.c-16 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-16 {
      width: 16%; } }

.c-17 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-17 {
      width: 17%; } }

.c-18 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-18 {
      width: 18%; } }

.c-19 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-19 {
      width: 19%; } }

.c-20 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-20 {
      width: 20%; } }

.c-21 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-21 {
      width: 21%; } }

.c-22 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-22 {
      width: 22%; } }

.c-23 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-23 {
      width: 23%; } }

.c-24 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-24 {
      width: 24%; } }

.c-25 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-25 {
      width: 25%; } }

.c-26 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-26 {
      width: 26%; } }

.c-27 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-27 {
      width: 27%; } }

.c-28 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-28 {
      width: 28%; } }

.c-29 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-29 {
      width: 29%; } }

.c-30 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-30 {
      width: 30%; } }

.c-31 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-31 {
      width: 31%; } }

.c-32 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-32 {
      width: 32%; } }

.c-33 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-33 {
      width: 33%; } }

.c-34 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-34 {
      width: 34%; } }

.c-35 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-35 {
      width: 35%; } }

.c-36 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-36 {
      width: 36%; } }

.c-37 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-37 {
      width: 37%; } }

.c-38 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-38 {
      width: 38%; } }

.c-39 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-39 {
      width: 39%; } }

.c-40 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-40 {
      width: 40%; } }

.c-41 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-41 {
      width: 41%; } }

.c-42 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-42 {
      width: 42%; } }

.c-43 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-43 {
      width: 43%; } }

.c-44 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-44 {
      width: 44%; } }

.c-45 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-45 {
      width: 45%; } }

.c-46 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-46 {
      width: 46%; } }

.c-47 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-47 {
      width: 47%; } }

.c-48 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-48 {
      width: 48%; } }

.c-49 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-49 {
      width: 49%; } }

.c-50 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-50 {
      width: 50%; } }

.c-51 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-51 {
      width: 51%; } }

.c-52 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-52 {
      width: 52%; } }

.c-53 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-53 {
      width: 53%; } }

.c-54 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-54 {
      width: 54%; } }

.c-55 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-55 {
      width: 55%; } }

.c-56 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-56 {
      width: 56%; } }

.c-57 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-57 {
      width: 57%; } }

.c-58 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-58 {
      width: 58%; } }

.c-59 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-59 {
      width: 59%; } }

.c-60 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-60 {
      width: 60%; } }

.c-61 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-61 {
      width: 61%; } }

.c-62 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-62 {
      width: 62%; } }

.c-63 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-63 {
      width: 63%; } }

.c-64 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-64 {
      width: 64%; } }

.c-65 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-65 {
      width: 65%; } }

.c-66 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-66 {
      width: 66%; } }

.c-67 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-67 {
      width: 67%; } }

.c-68 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-68 {
      width: 68%; } }

.c-69 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-69 {
      width: 69%; } }

.c-70 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-70 {
      width: 70%; } }

.c-71 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-71 {
      width: 71%; } }

.c-72 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-72 {
      width: 72%; } }

.c-73 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-73 {
      width: 73%; } }

.c-74 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-74 {
      width: 74%; } }

.c-75 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-75 {
      width: 75%; } }

.c-76 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-76 {
      width: 76%; } }

.c-77 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-77 {
      width: 77%; } }

.c-78 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-78 {
      width: 78%; } }

.c-79 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-79 {
      width: 79%; } }

.c-80 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-80 {
      width: 80%; } }

.c-81 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-81 {
      width: 81%; } }

.c-82 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-82 {
      width: 82%; } }

.c-83 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-83 {
      width: 83%; } }

.c-84 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-84 {
      width: 84%; } }

.c-85 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-85 {
      width: 85%; } }

.c-86 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-86 {
      width: 86%; } }

.c-87 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-87 {
      width: 87%; } }

.c-88 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-88 {
      width: 88%; } }

.c-89 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-89 {
      width: 89%; } }

.c-90 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-90 {
      width: 90%; } }

.c-91 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-91 {
      width: 91%; } }

.c-92 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-92 {
      width: 92%; } }

.c-93 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-93 {
      width: 93%; } }

.c-94 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-94 {
      width: 94%; } }

.c-95 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-95 {
      width: 95%; } }

.c-96 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-96 {
      width: 96%; } }

.c-97 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-97 {
      width: 97%; } }

.c-98 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-98 {
      width: 98%; } }

.c-99 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-99 {
      width: 99%; } }

.c-100 {
  width: 100%; }
  @media screen and (min-width: 992px) {
    .c-100 {
      width: 100%; } }

@media screen and (max-width: 37em) {
  .c-2.best-in-class {
    padding: 0px 20px; }
  div.featured-container p.top-sentence {
    padding: 45px 0px 15px 0px; }
  div.apps4-contact-box {
    text-align: left;
    padding: 0px 0px 0px 60px; }
  .resell-blue-box {
    margin: 0px 10px; }
  .compare-table .compare-column {
    margin: 60px 10px 0px 10px; }
  a.orange-ghost-btn {
    padding: 15px 10px;
    font-size: 16px; }
  .top-cta a {
    margin: 20px 0px; }
  body.fr div.advisor-pricing .section-title {
    font-size: 32px; } }

@media screen and (max-width: 604px) {
  div.holder-blocks div.holder-1 {
    display: none; }
  div.holder-blocks div.holder-2 {
    width: 100%;
    text-align: center;
    z-index: 5;
    padding: 30px; }
  div.holder-blocks.ebook div.holder-2 {
    z-index: 9;
    padding: 0px; }
  .left-content, .right-content {
    margin: 0;
    padding: 0; }
    .left-content ul, .right-content ul {
      list-style: none; }
  div.table-office365-resellers .s-table {
    display: none; }
  div.table-office365-resellers .mobile-view {
    display: block; } }

@media screen and (max-width: 768px) {
  div.c-3.no-pd {
    padding: 0.7em; }
  div.office365-apps4 .c-3 .blue-list-box, div.product-details.white-bg-np {
    max-width: 320px;
    margin: 0 auto;
    position: relative; }
  .cta-combo.o365 .btn-blue-border {
    display: inline-block;
    min-width: 285px; }
  table#table-price-hide {
    display: none; }
  div.office365-best-value {
    margin: 0px auto; } }

/*====================================================
MENU STYLES
====================================================*/
/* ====================================================
   DUAL BACKGROUND GRADIENT
   ==================================================== */
/*
 * This mixin will create a vertical solid gradient
 * from top To bottom and with fallback.
 * Usage: @include linearGradient($,$);
 *
 */
/* ====================================================
   COLOR STYLE GUIDE
   ==================================================== */
/*
 * This mixin will allow us to build
 * attributes with our color style guide
 *
 */
.black-sg {
  color: #0b0b0b;
  background: #0b0b0b;
  border-color: #0b0b0b; }

.white-sg {
  color: #ffffff;
  background: #ffffff;
  border-color: #ffffff; }

.grey-sg {
  color: #333333;
  background: #333333;
  border-color: #333333; }

.lightgrey-sg {
  color: #d4d4d4;
  background: #d4d4d4;
  border-color: #d4d4d4; }

.confirm-sg {
  color: #59cc2f;
  background: #59cc2f;
  border-color: #59cc2f; }

.warning-sg {
  color: #ffb413;
  background: #ffb413;
  border-color: #ffb413; }

.alert-sg {
  color: #ff001e;
  background: #ff001e;
  border-color: #ff001e; }

.bg-dark-sg {
  color: #dae4ef;
  background: #dae4ef;
  border-color: #dae4ef; }

.bg-light-sg {
  color: #e4ecf4;
  background: #e4ecf4;
  border-color: #e4ecf4; }

.primary-sg {
  color: #025091;
  background: #025091;
  border-color: #025091; }

.primary-is-active-sg {
  color: #023866;
  background: #023866;
  border-color: #023866; }

.secondary-sg {
  color: #3dabe8;
  background: #3dabe8;
  border-color: #3dabe8; }

.blue-sg {
  color: #35a4dd;
  background: #35a4dd;
  border-color: #35a4dd; }

.blue-is-active-sg {
  color: #267fab;
  background: #267fab;
  border-color: #267fab; }

.red-sg {
  color: #e30613;
  background: #e30613;
  border-color: #e30613; }

.red-is-active-sg {
  color: #c00d0d;
  background: #c00d0d;
  border-color: #c00d0d; }

.green-sg {
  color: #7FCB15;
  background: #7FCB15;
  border-color: #7FCB15; }

.green-is-active-sg {
  color: #4e8f0d;
  background: #4e8f0d;
  border-color: #4e8f0d; }

/*===================================================
1. LANGUAGE MENU
====================================================*/
/* sous-menu */
#header_list #lang_sel {
  height: 32px;
  position: relative;
  font-family: verdana, arial, sans-serif;
  display: inline-block; }
  #header_list #lang_sel ul, #header_list #lang_sel li {
    padding: 0 !important;
    margin: 0 !important;
    list-style-type: none !important; }
  #header_list #lang_sel a {
    border: none;
    padding: 2px 4px 4px 0px;
    color: #333333;
    font-family: "Arial Narrow", LocalArialNarrow, arial;
    font-size: 13px;
    font-weight: bold; }
    #header_list #lang_sel a.lang_sel_sel {
      background: #ffffff url("https://images.apps4.com/images/website_images/arrow_btm.png") center right no-repeat; }
  #header_list #lang_sel ul li {
    width: 110px; }
    #header_list #lang_sel ul li:before {
      content: '' !important; }
    #header_list #lang_sel ul li ul {
      width: 110px;
      top: 30px; }
  #header_list #lang_sel ul.main-menu2 li:first-child a:after {
    content: '';
    position: absolute;
    left: 45%;
    top: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #35a4dd; }
  #header_list #lang_sel img.iclflag {
    top: 1px; }

/*===================================================
2. TOP HEADER MENU
====================================================*/
.apps4-brand {
  padding-left: 15px; }
  @media screen and (min-width: 992px) {
    .apps4-brand {
      padding: 10px 1.5em; } }
  @media screen and (min-width: 1200px) {
    .apps4-brand {
      padding: 7px 0; } }

.site-header {
  border-bottom: 5px solid #6fa8db;
  padding: 15px 0px 0px 0px; }
  @media screen and (min-width: 992px) {
    .site-header {
      padding: 0;
      border-bottom: 0; } }
  .site-header .c-25 {
    text-align: left; }
    @media screen and (min-width: 576px) {
      .site-header .c-25 {
        text-align: center; } }
    @media screen and (min-width: 992px) {
      .site-header .c-25 {
        text-align: left; } }

.menu-holder {
  padding: 0em; }

.blue_banner {
  background: #184372; }

/*===================================================
4. MOBILE MENU
====================================================*/
.trigger-mobile-menu {
  display: inline-block; }
  @media screen and (min-width: 992px) {
    .trigger-mobile-menu {
      display: none; } }
  .trigger-mobile-menu .open-left-menu {
    position: fixed;
    z-index: 8;
    padding: 10px;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 0;
    font-family: inherit;
    z-index: 9;
    top: 15px;
    right: 15px; }
    .trigger-mobile-menu .open-left-menu .c-hamburger--htx {
      background-color: #184372; }

#left-menu {
  display: none;
  position: fixed;
  min-height: 100%;
  z-index: 9;
  display: none;
  overflow-y: auto;
  height: 100%;
  -webkit-box-shadow: 15px 0px 30px -15px rgba(51, 51, 51, 0.8);
  color: #ffffff;
  background: #414042;
  width: 80%;
  left: -100%;
  top: 0px;
  /*ul {
        //display: block;
        float: left;
        margin: 0px 0px;
        font-family: "MuseoSans-300";
        width: 100%;
        font-size: 16px;
        list-style: none;
        padding: 1px;
        position: relative;
        .mobile-sub-menu {
            font-family: "MuseoSans-300";
            font-size: 14px;
        }
        .mobile-section-name {
            font-family: "MuseoSans-500";
            font-size: 14px;
        }
    }*/ }
  #left-menu.with-top {
    top: 100px; }
    #left-menu.with-top:after {
      top: 100px; }
  #left-menu:after {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    content: ''; }
  #left-menu.active {
    left: 0;
    display: block; }
    @media screen and (min-width: 992px) {
      #left-menu.active {
        display: none; } }
  #left-menu .trigger-menu.close-left-menu {
    display: none; }
  #left-menu::-webkit-scrollbar {
    width: 10px;
    height: 12px; }
  #left-menu::-webkit-scrollbar-thumb {
    background: #025091; }
  #left-menu::-webkit-scrollbar-thumb:hover {
    background: #000000; }
  #left-menu::-webkit-scrollbar-track-piece {
    background: #ffffff; }
  #left-menu .mobile-menu ul, #left-menu .mobile-menu-secondary ul {
    float: none;
    padding: 0;
    font-family: "MuseoSans-100"; }
    #left-menu .mobile-menu ul li, #left-menu .mobile-menu-secondary ul li {
      border: 0;
      line-height: 2.2;
      /* &.no-child{
        &:before, &:after{
            display:none;
        } 
     }*/ }
      #left-menu .mobile-menu ul li.menu-item-has-children a:after, #left-menu .mobile-menu-secondary ul li.menu-item-has-children a:after {
        content: '';
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        right: 0;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
      #left-menu .mobile-menu ul li a, #left-menu .mobile-menu-secondary ul li a {
        background: #0b5a99;
        color: #ffffff;
        display: block;
        padding: 0 22px;
        font-size: 18px;
        line-height: inherit;
        font-family: "MuseoSans-100";
        border-bottom: 1px solid #184372; }
        #left-menu .mobile-menu ul li a:after, #left-menu .mobile-menu-secondary ul li a:after {
          display: none; }
        #left-menu .mobile-menu ul li a span, #left-menu .mobile-menu-secondary ul li a span {
          font-family: "MuseoSans-100"; }
      #left-menu .mobile-menu ul li.menu-item-has-children > a, #left-menu .mobile-menu-secondary ul li.menu-item-has-children > a {
        position: relative; }
        #left-menu .mobile-menu ul li.menu-item-has-children > a:after, #left-menu .mobile-menu-secondary ul li.menu-item-has-children > a:after {
          display: block;
          right: 10px !important; }
        #left-menu .mobile-menu ul li.menu-item-has-children > a.active:after, #left-menu .mobile-menu-secondary ul li.menu-item-has-children > a.active:after {
          -webkit-transform: rotate(180deg);
                  transform: rotate(180deg); }
      #left-menu .mobile-menu ul li ul.sub-menu li, #left-menu .mobile-menu-secondary ul li ul.sub-menu li {
        background: none;
        border: 0; }
        #left-menu .mobile-menu ul li ul.sub-menu li.menu-item-has-children a, #left-menu .mobile-menu-secondary ul li ul.sub-menu li.menu-item-has-children a {
          color: #31a5de;
          text-transform: uppercase;
          font-family: "MuseoSans-700"; }
        #left-menu .mobile-menu ul li ul.sub-menu li ul.sub-menu li, #left-menu .mobile-menu-secondary ul li ul.sub-menu li ul.sub-menu li {
          border: 0; }
          #left-menu .mobile-menu ul li ul.sub-menu li ul.sub-menu li a, #left-menu .mobile-menu-secondary ul li ul.sub-menu li ul.sub-menu li a {
            color: #ffffff;
            text-transform: none;
            font-family: "MuseoSans-300"; }
            #left-menu .mobile-menu ul li ul.sub-menu li ul.sub-menu li a:after, #left-menu .mobile-menu-secondary ul li ul.sub-menu li ul.sub-menu li a:after {
              display: none; }
  #left-menu .mobile-menu .sub-menu, #left-menu .mobile-menu-secondary .sub-menu {
    display: none; }
  #left-menu .mobile-menu-secondary {
    /*h3,
        li,
        a {
            color: white;
        }*/ }
    #left-menu .mobile-menu-secondary h3 {
      text-align: left;
      padding: 10px 22px;
      background: #1E1E1E; }
    #left-menu .mobile-menu-secondary a span.text,
    #left-menu .mobile-menu-secondary a span.icon {
      display: inline-block; }
    #left-menu .mobile-menu-secondary a span.icon {
      margin-right: 17px; }
      #left-menu .mobile-menu-secondary a span.icon img {
        width: 17px;
        height: 20px; }
      #left-menu .mobile-menu-secondary a span.icon i {
        width: 17px;
        font-size: 20px; }
    #left-menu .mobile-menu-secondary select {
      padding: 0.5em 22px;
      font-size: 16px;
      width: 100%; }
    #left-menu .mobile-menu-secondary ul li a {
      background: #414042;
      border-bottom: 1px solid #fff; }
      #left-menu .mobile-menu-secondary ul li a.button, #left-menu .mobile-menu-secondary ul li a.button-blue, #left-menu .mobile-menu-secondary ul li a.button-blue-ghost, #left-menu .mobile-menu-secondary ul li a.button-red, #left-menu .mobile-menu-secondary ul li a.button-red-ghost, #left-menu .mobile-menu-secondary ul li a.button-gold, #left-menu .mobile-menu-secondary ul li a.button-gold__ghost, #left-menu .mobile-menu-secondary ul li a.button-green, #left-menu .mobile-menu-secondary ul li a.button-green-ghost, #left-menu .mobile-menu-secondary ul li a.button-white, #left-menu .mobile-menu-secondary ul li a.button-gray, #left-menu .mobile-menu-secondary ul li a.button-primary-ghost {
        background: #31a5de;
        font-size: inherit;
        font-family: inherit;
        padding: inherit;
        padding: 0.5em;
        border-bottom: 0;
        display: block;
        font-size: 16px; }
    #left-menu .mobile-menu-secondary ul li ul li a:not(.wpml-ls-link) {
      background: #1E1E1E; }
    #left-menu .mobile-menu-secondary .wpml-ls-legacy-dropdown .wpml-ls-flag + span {
      margin-left: 17px; }
    #left-menu .mobile-menu-secondary #lang_sel a {
      border-left: 0;
      border-top: 0;
      border-right: 0; }
    #left-menu .mobile-menu-secondary #lang_sel ul ul {
      border-top: 0; }
    #left-menu .mobile-menu-secondary #lang_sel a.lang_sel_sel:before {
      content: '';
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid #ffffff;
      right: 10px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
    #left-menu .mobile-menu-secondary .mobile-secondary-sub {
      display: none; }
      #left-menu .mobile-menu-secondary .mobile-secondary-sub select {
        color: #414042; }
    #left-menu .mobile-menu-secondary li.wpml-ls-item {
      border-bottom: 0; }

ul.sub-menu.sf-js-enabled {
  width: 19em !important; }

header .wpml-ls-legacy-dropdown {
  width: inherit !important;
  max-width: 100%; }

@media (min-width: 1200px) {
  footer .wpml-ls-legacy-dropdown {
    float: right; } }

footer .wpml-ls-legacy-dropdown .wpml-ls-flag + span {
  text-transform: uppercase;
  color: #025091;
  font-family: "ProximaNova-Bold", arial, sans-serif;
  text-transform: uppercase;
  font-size: 12px; }

footer .wpml-ls-statics-shortcode_actions, footer .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu, footer .wpml-ls-statics-shortcode_actions a {
  border: transparent; }

#header {
  font-size: 16px; }
  #header #masthead .c-75.contact-lists {
    display: none; }
    @media screen and (min-width: 992px) {
      #header #masthead .c-75.contact-lists {
        display: block; } }
  @media screen and (min-width: 992px) {
    #header .hamburger-menu {
      display: none; } }

/***
*
MENU V2 - 2018
*
***/
.softblue_banner,
.blue_banner {
  display: none; }
  @media screen and (min-width: 992px) {
    .softblue_banner,
    .blue_banner {
      display: block; } }

.softblue_banner {
  background: #0b5a99; }

.main-navigation {
  background: transparent; }
  .main-navigation ul.menu {
    position: relative;
    z-index: 2;
    padding: 0 1em; }
    @media screen and (min-width: 1200px) {
      .main-navigation ul.menu {
        padding: 0;
        margin: 0; } }
    .main-navigation ul.menu li {
      color: #ffffff;
      list-style: none;
      display: inline-block;
      margin-right: 1em;
      /* &.no-child{
        &:before, &:after{
            display:none;
        } 
     }*/ }
      .main-navigation ul.menu li:last-child {
        margin-right: 0; }
      .main-navigation ul.menu li a {
        display: block;
        color: #ffffff;
        font-family: "MuseoSans-300", Arial, Helvetica, sans-serif;
        padding: 0.8em 1em 0.8em 1em;
        position: relative; }
        .main-navigation ul.menu li a span.menu-item-text {
          position: relative; }
          .main-navigation ul.menu li a span.menu-item-text:after {
            height: 1px;
            background: white;
            content: '';
            width: 0px;
            position: absolute;
            bottom: -4px;
            left: 0;
            -webkit-transition: width 300ms cubic-bezier(0.18, 0.68, 1, 1);
            transition: width 300ms cubic-bezier(0.18, 0.68, 1, 1); }
        .main-navigation ul.menu li a:hover span.menu-item-text:after, .main-navigation ul.menu li a.active span.menu-item-text:after {
          width: 100%; }
        .main-navigation ul.menu li a:hover:before, .main-navigation ul.menu li a.active:before {
          content: '';
          width: 0;
          height: 0;
          border-left: 7px solid transparent;
          border-right: 7px solid transparent;
          border-bottom: 7px solid #025091;
          left: 50%;
          position: absolute;
          bottom: 0;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%); }
      .main-navigation ul.menu li.menu-item-has-children a:after {
        content: '';
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        right: 0;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
      .main-navigation ul.menu li:first-child a {
        padding-left: 0.5em; }

.sub-menus {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 2; }
  @media screen and (min-width: 992px) {
    .sub-menus.active, .sub-menus.innerMenu {
      display: block; } }
  @media screen and (min-width: 992px) {
    .sub-menus.innerMenu {
      position: absolute; } }

.menu-blocks {
  background: #184372;
  padding: 1em 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .menu-blocks .menu-block {
    padding: 0 0.5em 0.5em 0; }
    .menu-blocks .menu-block .menu-title {
      color: #35a4dd;
      margin-top: 0;
      font-family: 'ProximaNova-Bold';
      padding: 0 0.5em;
      margin-bottom: 0; }
      @media screen and (min-width: 1200px) {
        .menu-blocks .menu-block .menu-title {
          padding-left: 0; } }
    .menu-blocks .menu-block ul.page-list {
      font-family: "MuseoSans-300", Arial, Helvetica, sans-serif;
      margin: 0.5em 0 0 0;
      padding: 0; }
      .menu-blocks .menu-block ul.page-list li {
        list-style: none; }
        .menu-blocks .menu-block ul.page-list li a {
          color: #ffffff;
          display: inline-block;
          line-height: 1.3;
          padding: 0.3em 1em 0.1em 1em; }
          @media screen and (min-width: 1200px) {
            .menu-blocks .menu-block ul.page-list li a {
              padding-left: 0; } }
          .menu-blocks .menu-block ul.page-list li a:hover {
            text-decoration: underline; }
    .menu-blocks .menu-block .subpages ul {
      margin-bottom: 0; }
    .menu-blocks .menu-block .subpages li {
      list-style: none;
      display: inline-block;
      margin-right: 1em;
      position: relative;
      /* &.no-child{
        &:before, &:after{
            display:none;
        } 
     }*/ }
      .menu-blocks .menu-block .subpages li.menu-item-has-children a:after {
        content: '';
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        right: 0;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
      .menu-blocks .menu-block .subpages li:last-of-type {
        margin-right: 0; }
      .menu-blocks .menu-block .subpages li a {
        padding: 1em 1em 1em 0;
        font-family: "MuseoSans-500", Arial, Helvetica, sans-serif;
        position: relative;
        color: #ffffff;
        display: inline-block; }
        .menu-blocks .menu-block .subpages li a span.menu-item-text {
          position: relative; }
          .menu-blocks .menu-block .subpages li a span.menu-item-text:after {
            height: 1px;
            background: white;
            content: '';
            width: 0px;
            position: absolute;
            bottom: -4px;
            left: 0;
            -webkit-transition: width 300ms cubic-bezier(0.18, 0.68, 1, 1);
            transition: width 300ms cubic-bezier(0.18, 0.68, 1, 1); }
        .menu-blocks .menu-block .subpages li a:hover span.menu-item-text:after, .menu-blocks .menu-block .subpages li a.active span.menu-item-text:after {
          width: 100%; }
      .menu-blocks .menu-block .subpages li ul.sub-menu,
      .menu-blocks .menu-block .subpages li .with-dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        background: #ffffff;
        padding: 1em 0;
        min-width: 300px;
        z-index: 3;
        margin-top: -10px;
        /*&.active{
        display:block;
    } */ }
        .menu-blocks .menu-block .subpages li ul.sub-menu h3,
        .menu-blocks .menu-block .subpages li .with-dropdown h3 {
          border-bottom: 1px solid #333333; }
          .menu-blocks .menu-block .subpages li ul.sub-menu h3.no-border,
          .menu-blocks .menu-block .subpages li .with-dropdown h3.no-border {
            border: 0; }
        .menu-blocks .menu-block .subpages li ul.sub-menu li,
        .menu-blocks .menu-block .subpages li .with-dropdown li {
          background-color: transparent;
          text-align: center;
          width: 100%;
          display: block; }
          .menu-blocks .menu-block .subpages li ul.sub-menu li a,
          .menu-blocks .menu-block .subpages li .with-dropdown li a {
            color: #025091;
            padding: 0.5em;
            font-family: 'MuseoSans-100';
            text-align: center;
            width: 100%;
            text-transform: none;
            display: block;
            border-bottom: 1px solid #333333;
            border-left: 0;
            font-size: 16px; }
            .menu-blocks .menu-block .subpages li ul.sub-menu li a:before,
            .menu-blocks .menu-block .subpages li .with-dropdown li a:before {
              display: none; }
            .menu-blocks .menu-block .subpages li ul.sub-menu li a:hover,
            .menu-blocks .menu-block .subpages li .with-dropdown li a:hover {
              color: #ffffff;
              background: #333333; }
          .menu-blocks .menu-block .subpages li ul.sub-menu li:last-child a,
          .menu-blocks .menu-block .subpages li .with-dropdown li:last-child a {
            border-bottom: 0; }
          .menu-blocks .menu-block .subpages li ul.sub-menu li.current_page_item a span.menu-item-text:after,
          .menu-blocks .menu-block .subpages li .with-dropdown li.current_page_item a span.menu-item-text:after {
            display: block;
            width: 100%;
            background: #333333; }
          .menu-blocks .menu-block .subpages li ul.sub-menu li.current_page_item a:hover span.menu-item-text:after,
          .menu-blocks .menu-block .subpages li .with-dropdown li.current_page_item a:hover span.menu-item-text:after {
            background: #ffffff; }
        .menu-blocks .menu-block .subpages li ul.sub-menu:before,
        .menu-blocks .menu-block .subpages li .with-dropdown:before {
          content: '';
          width: 0;
          height: 0;
          border-left: 10px solid transparent;
          border-right: 10px solid transparent;
          border-bottom: 10px solid #fff;
          top: 0;
          left: 50%;
          -webkit-transform: translateX(-50%) translateY(-100%);
                  transform: translateX(-50%) translateY(-100%);
          position: absolute; }
        .menu-blocks .menu-block .subpages li ul.sub-menu li a,
        .menu-blocks .menu-block .subpages li .with-dropdown li a {
          color: #333333; }
      .menu-blocks .menu-block .subpages li:hover ul.sub-menu {
        display: block; }
      .menu-blocks .menu-block .subpages li ul li a:before, .menu-blocks .menu-block .subpages li ul li a:after {
        display: none; }
      .menu-blocks .menu-block .subpages li.cta-inner-menu a {
        background: transparent;
        padding: 8px;
        border: 1px solid #3dabe8;
        border-radius: 7px; }
        .menu-blocks .menu-block .subpages li.cta-inner-menu a .menu-item-text:after {
          display: none; }
        .menu-blocks .menu-block .subpages li.cta-inner-menu a:hover {
          color: #ffffff;
          background: #3dabe8; }
      .menu-blocks .menu-block .subpages li.current_page_item a span.menu-item-text:after {
        display: block;
        width: 100%; }

.innerMenu .menu-blocks {
  padding: 0.4em 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .innerMenu .menu-blocks .menu-block {
    padding: 0; }
    .innerMenu .menu-blocks .menu-block .menu-title {
      font-size: 20px; }
    .innerMenu .menu-blocks .menu-block.c-80 {
      text-align: right; }

.innerMenu.fixed {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 10; }

.element-dropdown {
  display: none; }

body.logged-in .innerMenu.fixed {
  margin-top: 32px; }

@media screen and (min-width: 992px) {
  li.with-dropdown {
    position: relative; }
    li.with-dropdown .element-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      background: #ffffff;
      padding: 1em 0;
      min-width: 300px;
      z-index: 3;
      margin-top: -10px;
      /*&.active{
        display:block;
    } */
      top: calc(100%+22px); }
      li.with-dropdown .element-dropdown.cumulus-login {
        padding: 1.5em 1em; }
      li.with-dropdown .element-dropdown h3 {
        border-bottom: 1px solid #333333; }
        li.with-dropdown .element-dropdown h3.no-border {
          border: 0; }
      li.with-dropdown .element-dropdown li {
        background-color: transparent;
        text-align: center;
        width: 100%;
        display: block; }
        li.with-dropdown .element-dropdown li a {
          color: #025091;
          padding: 0.5em;
          font-family: 'MuseoSans-100';
          text-align: center;
          width: 100%;
          text-transform: none;
          display: block;
          border-bottom: 1px solid #333333;
          border-left: 0;
          font-size: 16px; }
          li.with-dropdown .element-dropdown li a:before {
            display: none; }
          li.with-dropdown .element-dropdown li a:hover {
            color: #ffffff;
            background: #333333; }
        li.with-dropdown .element-dropdown li:last-child a {
          border-bottom: 0; }
        li.with-dropdown .element-dropdown li.current_page_item a span.menu-item-text:after {
          display: block;
          width: 100%;
          background: #333333; }
        li.with-dropdown .element-dropdown li.current_page_item a:hover span.menu-item-text:after {
          background: #ffffff; }
      li.with-dropdown .element-dropdown:before {
        content: '';
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #fff;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(-100%);
                transform: translateX(-50%) translateY(-100%);
        position: absolute; }
      li.with-dropdown .element-dropdown .button, li.with-dropdown .element-dropdown .button-blue, li.with-dropdown .element-dropdown .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton, .mktoForm .mktoButtonRow .mktoButtonWrap li.with-dropdown .element-dropdown button.mktoButton, li.with-dropdown .element-dropdown .button-blue-ghost, li.with-dropdown .element-dropdown .button-red, li.with-dropdown .element-dropdown .button-red-ghost, li.with-dropdown .element-dropdown .button-gold, li.with-dropdown .element-dropdown .button-gold__ghost, li.with-dropdown .element-dropdown .button-green, li.with-dropdown .element-dropdown .voip-legal form.voip-legal-form .input-row input[type=submit], .voip-legal form.voip-legal-form .input-row li.with-dropdown .element-dropdown input[type=submit], li.with-dropdown .element-dropdown .button-green-ghost, li.with-dropdown .element-dropdown .button-white, li.with-dropdown .element-dropdown .button-gray, li.with-dropdown .element-dropdown .button-primary-ghost {
        padding: 0.5em;
        text-transform: uppercase; }
      li.with-dropdown .element-dropdown select {
        margin: 0 auto 1em auto;
        color: #025091;
        background: #ffffff;
        padding: 0.5em 1em;
        border-radius: 3px;
        text-transform: uppercase;
        font-size: 14px;
        text-align: center;
        border: 1px solid #333333;
        font-family: "MuseoSans-700", Arial, Helvetica, sans-serif; }
      li.with-dropdown .element-dropdown a:not(.button-blue) {
        color: #333333; }
  #masthead > .frame-flex:first-of-type {
    margin: -1px auto; }
  #header .apps4-brand img {
    max-width: 43%; }
  #header .search_form_container {
    border-radius: 3px;
    padding: 5px 5px 5px 0;
    margin: 0; }
    #header .search_form_container .search-field {
      width: 100%;
      padding-left: 8px; }
  #header #header_list {
    margin: 0;
    list-style: none;
    float: right;
    padding: 0px; }
    #header #header_list li {
      padding: 0;
      margin: 0;
      float: left;
      display: inline-block;
      list-style: none;
      background: #ffffff;
      position: relative;
      border: 0; }
      #header #header_list li a {
        font-family: "ProximaNova-Bold", arial, sans-serif;
        font-size: 12px;
        line-height: 30px;
        display: inline-block; }
        #header #header_list li a:first-child {
          padding: 0.85em 1.4em;
          background: none;
          text-transform: uppercase;
          color: #184372;
          position: relative;
          line-height: 20px; }
          #header #header_list li a:first-child:before {
            content: '';
            position: absolute;
            width: 1px;
            left: 0;
            top: 0;
            height: 100%;
            background: #a7a9ab; }
          #header #header_list li a:first-child:hover {
            color: #ffffff;
            background: #184372; }
          #header #header_list li a:first-child.cta-header {
            background: #e30613;
            color: #ffffff;
            display: inline-block; }
            #header #header_list li a:first-child.cta-header:before {
              display: none; }
            #header #header_list li a:first-child.cta-header:hover {
              background: #c00d0d;
              color: #ffffff; }
      #header #header_list li ul li {
        border-left: 0; }
      #header #header_list li .menu-top-support-container,
      #header #header_list li .menu-top-sales-container {
        left: inherit;
        bottom: inherit;
        -webkit-transform: none;
                transform: none; }
      #header #header_list li.with-dropdown {
        position: relative; }
        #header #header_list li.with-dropdown .element-dropdown {
          display: none;
          position: absolute;
          top: calc(100% + 10px);
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          background: #ffffff;
          padding: 1em 0;
          min-width: 300px;
          z-index: 3;
          margin-top: -10px;
          /*&.active{
        display:block;
    } */ }
          #header #header_list li.with-dropdown .element-dropdown h3 {
            border-bottom: 1px solid #333333; }
            #header #header_list li.with-dropdown .element-dropdown h3.no-border {
              border: 0; }
          #header #header_list li.with-dropdown .element-dropdown li {
            background-color: transparent;
            text-align: center;
            width: 100%;
            display: block; }
            #header #header_list li.with-dropdown .element-dropdown li a {
              color: #025091;
              padding: 0.5em;
              font-family: 'MuseoSans-100';
              text-align: center;
              width: 100%;
              text-transform: none;
              display: block;
              border-bottom: 1px solid #333333;
              border-left: 0;
              font-size: 16px; }
              #header #header_list li.with-dropdown .element-dropdown li a:before {
                display: none; }
              #header #header_list li.with-dropdown .element-dropdown li a:hover {
                color: #ffffff;
                background: #333333; }
            #header #header_list li.with-dropdown .element-dropdown li:last-child a {
              border-bottom: 0; }
            #header #header_list li.with-dropdown .element-dropdown li.current_page_item a span.menu-item-text:after {
              display: block;
              width: 100%;
              background: #333333; }
            #header #header_list li.with-dropdown .element-dropdown li.current_page_item a:hover span.menu-item-text:after {
              background: #ffffff; }
          #header #header_list li.with-dropdown .element-dropdown:before {
            content: '';
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid #fff;
            top: 0;
            left: 50%;
            -webkit-transform: translateX(-50%) translateY(-100%);
                    transform: translateX(-50%) translateY(-100%);
            position: absolute; }
          #header #header_list li.with-dropdown .element-dropdown a.button-blue:hover {
            color: #ffffff; }
        #header #header_list li.with-dropdown:hover .element-dropdown {
          display: block; }
      #header #header_list li:last-child a {
        -webkit-transition: none;
        transition: none; }
        #header #header_list li:last-child a:before {
          display: none; }
    #header #header_list #lang_sel li {
      width: 133px;
      min-height: 41px; }
    #header #header_list #lang_sel ul ul {
      border-top: 0;
      top: 39px; }
    #header #header_list #lang_sel a {
      font: bold 12px Arial, Helvetica;
      padding: 0.85em 0.5em 1.3em 0.5em;
      display: block; }
    #header #header_list #lang_sel a.wpml-ls-item-toggle:after {
      top: calc(50% - .5em); } }

footer {
  background: #0b5a99;
  color: white;
  padding-top: 3em;
  font-family: "MuseoSans-100";
  font-size: 15px;
  padding-left: 2em;
  padding-right: 2em; }
  @media screen and (min-width: 768px) {
    footer {
      padding-left: 0;
      padding-right: 0; } }
  footer img.footer-logo {
    width: 200px; }
    @media screen and (min-width: 768px) {
      footer img.footer-logo {
        width: 140px; } }
  @media screen and (min-width: 768px) {
    footer ul.footer-partners {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  footer ul.footer-partners li {
    list-style: none;
    width: 50%;
    display: inline-block;
    float: left;
    text-align: center; }
    @media screen and (min-width: 768px) {
      footer ul.footer-partners li {
        -ms-flex-preferred-size: 16.5%;
            flex-basis: 16.5%;
        padding: 21px; } }
    footer ul.footer-partners li img {
      height: 80px;
      margin: 0 auto;
      display: block; }
      footer ul.footer-partners li img.hover {
        display: none; }
    footer ul.footer-partners li:hover img {
      display: none; }
      footer ul.footer-partners li:hover img.hover {
        display: block; }
  footer .footer-container {
    max-width: 1200px;
    margin: 0 auto; }
  footer .frame-flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 100%; }
    footer .frame-flex.lvl2 {
      border-top: 1px solid white;
      border-bottom: 1px solid white;
      padding: 0.5em 0;
      margin-bottom: 2em; }
      footer .frame-flex.lvl2 .lvl2-col {
        display: none; }
      footer .frame-flex.lvl2.active .lvl2-col {
        display: block; }
  footer a {
    color: white; }
    footer a:hover {
      color: #31a5de; }
  footer a.quicklinks-footer-link {
    text-transform: none;
    font-family: "MuseoSans-100";
    font-size: 130%; }
    footer a.quicklinks-footer-link span {
      text-transform: uppercase;
      font-family: "MuseoSans-700";
      display: inline-block;
      font-size: 108%;
      padding: 0;
      margin: 0; }
      footer a.quicklinks-footer-link span:last-of-type {
        margin-right: 1em; }
  footer h3 {
    font-family: "MuseoSans-700";
    margin-top: 0;
    text-transform: uppercase;
    font-size: 21px; }
  footer ul li {
    list-style: none;
    font-size: inherit; }
    footer ul li a {
      text-shadow: none;
      font-size: inherit;
      line-height: 1.6em; }
  footer span {
    text-shadow: none;
    color: inherit; }
  footer hr {
    border: 0;
    background: white; }
  footer .col-3 ul,
  footer .col-5 ul {
    margin-bottom: 2em; }

.footer-copyright {
  font-size: 16px;
  background: #184372;
  color: white;
  padding: 1em 2em; }
  .footer-copyright a {
    color: white; }
  .footer-copyright p {
    text-align: center; }
    @media screen and (min-width: 768px) {
      .footer-copyright p {
        text-align: left; } }
  .footer-copyright .social-links {
    text-align: center;
    width: 100%;
    padding: 0px 0px 25px; }
    @media screen and (min-width: 768px) {
      .footer-copyright .social-links {
        float: right;
        margin-top: 0; } }
  @media screen and (min-width: 768px) {
    .footer-copyright {
      padding: 1em 0; } }

/* ===================================================================
  HAMBURGER ICONS COMPONENT 
  FORMERLY components.hamburger
=================================================================== */
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 45px;
  height: 45px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s; }
  .c-hamburger:focus {
    outline: none; }
  .c-hamburger span {
    display: block;
    position: absolute;
    top: 21.5px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: white; }
    .c-hamburger span:before, .c-hamburger span:after {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #fff;
      content: ""; }
    .c-hamburger span:before {
      top: -7px; }
    .c-hamburger span:after {
      bottom: -7px; }

/**
 * Style 2
 * 
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.c-hamburger--htx {
  background-color: #326295;
  /* active state, i.e. menu open */ }
  .c-hamburger--htx span {
    -webkit-transition: background 0s 0.3s;
    transition: background 0s 0.3s; }
    .c-hamburger--htx span:before, .c-hamburger--htx span:after {
      -webkit-transition-duration: 0.3s, 0.3s;
              transition-duration: 0.3s, 0.3s;
      -webkit-transition-delay: 0.3s, 0s;
              transition-delay: 0.3s, 0s; }
    .c-hamburger--htx span:before {
      -webkit-transition-property: top, -webkit-transform;
      transition-property: top, -webkit-transform;
      transition-property: top, transform;
      transition-property: top, transform, -webkit-transform; }
    .c-hamburger--htx span:after {
      -webkit-transition-property: bottom, -webkit-transform;
      transition-property: bottom, -webkit-transform;
      transition-property: bottom, transform;
      transition-property: bottom, transform, -webkit-transform; }
  .c-hamburger--htx.is-active {
    background-color: #183049; }
    .c-hamburger--htx.is-active span {
      background: none; }
      .c-hamburger--htx.is-active span:before, .c-hamburger--htx.is-active span:after {
        -webkit-transition-delay: 0s, 0.3s;
                transition-delay: 0s, 0.3s; }
      .c-hamburger--htx.is-active span:before {
        top: 0;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg); }
      .c-hamburger--htx.is-active span:after {
        bottom: 0;
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg); }

/*
  TABLE OF CONTENTS
  0. BASE - HTML, BODY, LINK
  1. TEXT - ALIGNMENT
  2. TEXT - COLOR
  3. TEXT - FAMILY
  4. TEXT - STYLE
  5. TEXT - TRANSFORM
  6. MARGINS & PADDINGS
  7. BORDER
  8. SHADOWS
  9. BACKGROUNDS & TRAINGLES
  10. MISCELLANEOUS
*/
body,
html {
  /*height: 100%;*/ }

body {
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  font-size: 16px;
  line-height: 1.42857143;
  overflow-x: hidden; }
  @media (min-width: 768px) {
    body {
      font-size: 20px;
      overflow-x: auto; } }

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle; }

a {
  color: #025091;
  outline: none;
  -webkit-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  text-decoration: none; }
  a:focus, a:hover {
    text-decoration: none; }

p {
  margin: 0 0 10px; }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'ProximaNova'; }

.bold {
  font-family: 'ProximaNova-Bold'; }

:after, :before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

embed,
iframe,
object {
  max-width: 100%; }

sup {
  font-size: 50%; }

.text-center,
.center-content,
.apps4-contact-box,
.cam-col03,
.cam-col04 {
  text-align: center !important; }

.text-right,
.oSMB-AR {
  text-align: right !important; }

.text-left,
.align-left,
.oSMB-AL,
.inner-exec .profile {
  text-align: left !important; }

.centered-img {
  display: block;
  margin: 0 auto; }

.one_word {
  white-space: nowrap; }

.light-blue,
.secondary {
  color: #3dabe8 !important; }

.orange,
.red {
  color: #e30613 !important; }

.text-444 {
  color: #333333 !important; }

.blue,
.primary {
  color: #025091 !important; }

.white {
  color: #ffffff !important; }

.sky-blue {
  color: #35a4dd !important; }

.thin-museosans {
  font-family: "MuseoSans-100" !important; }

.light-museosans {
  font-family: "MuseoSans-300" !important; }

.light-proxima {
  font-family: 'ProximaNova-Regular', 'ProximaNova'; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .light-proxima {
      font-family: "ProximaNova-light"; } }

.bold-small-title {
  font-family: "ProximaNova-Bold" !important; }

.bold-title {
  font-size: 27px;
  font-family: "MuseoSans-900", arial, sans-serif;
  padding: 0 0 30px;
  margin: 0; }
  .bold-title span {
    font-family: "MuseoSans-300", arial, sans-serif;
    color: #6fa8db; }

.small-title, .small-subtitle {
  font-family: "MuseoSans-500", arial, sans-serif; }

.surtitle {
  color: #d4d4d4;
  font-size: 20px;
  display: block; }

.small-title {
  font-size: 28px; }

.small-subtitle {
  font-size: 21px;
  letter-spacing: -1px; }

.museo-300 {
  font-family: "MuseoSans-300", arial, sans-serif !important; }

.museo-500 {
  font-family: "MuseoSans-500", arial, sans-serif !important; }

.museo-700 {
  font-family: "MuseoSans-700", arial, sans-serif !important; }

.museo-900 {
  font-family: "MuseoSans-900", arial, sans-serif !important; }

.light-blue-title {
  color: #3dabe8;
  display: inline !important;
  font-size: inherit !important; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #ffffff;
  word-wrap: break-word;
  padding-right: 36px; }

.link-news {
  color: #3dabe8;
  font-family: "ProximaNova";
  font-size: 16px;
  text-decoration: underline; }

.regular-text, #newsroom p,
.responsive-table td {
  font-family: "ProximaNova";
  color: #333333;
  font-size: 16px;
  line-height: 26px; }
  @media (min-width: 768px) {
    .regular-text, #newsroom p,
    .responsive-table td {
      font-size: 18.5px; } }

.regular-text.link, #newsroom p.link {
  border-bottom: 1px solid;
  margin: 0 0 0 15px; }
  .regular-text.link:hover, #newsroom p.link:hover {
    color: #3dabe8; }

.news-title, .second-sentence {
  color: #025091; }

.news-title {
  font-size: 18px;
  margin: 0px;
  font-family: "ProximaNova-Bold";
  font-weight: normal; }

.second-sentence {
  font-family: "MuseoSans-300";
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -1px; }

.light-subtitle {
  font-family: "MuseoSans-500", arial, sans-serif;
  font-size: 20px; }

.profile {
  font-family: "MuseoSans-700";
  font-size: 24px;
  color: #025091;
  text-align: center;
  font-weight: normal; }
  .profile span {
    font-family: "MuseoSans-500";
    font-size: 16px;
    display: block;
    color: #3dabe8; }

.section-title {
  font-size: 38px;
  font-family: "MuseoSans-300", arial, sans-serif;
  font-weight: normal;
  line-height: 42px;
  text-align: center;
  padding: 0 0 30px; }
  .section-title span {
    font-size: 24px;
    display: block;
    line-height: 32px;
    color: #3dabe8;
    text-transform: uppercase; }
    .section-title span.bold {
      font-family: "MuseoSans-700", arial, sans-serif; }
    .section-title span.wrap {
      color: #025091;
      display: inline-block;
      line-height: inherit; }
    .section-title span.emphasis {
      font-family: 'MuseoSans-700';
      display: inline-block;
      color: inherit;
      text-transform: inherit;
      font-size: inherit; }

.uppercase-title {
  font-family: "ProximaNova-Bold";
  font-size: 21px;
  text-transform: uppercase;
  line-height: 0; }

.museo-title, .light-blue-headline {
  font-family: "MuseoSans-700", arial, sans-serif;
  font-weight: normal; }

.museo-title {
  font-size: 24px;
  letter-spacing: -.5px; }

.light-blue-headline {
  font-size: 36px;
  line-height: 42px;
  text-transform: uppercase;
  color: #025091;
  letter-spacing: -1px; }

.title-13, .title-18, .title-21, .title-25, .title-26, .title-28, .title-30, .title-32, .title-34, .title-42, .title-44 {
  line-height: normal; }

.title-13 {
  font-size: 13px !important; }

.title-18 {
  font-size: 18px !important; }

.title-21 {
  font-size: 21px !important; }

.title-25 {
  font-size: 21px !important; }
  @media (min-width: 768px) {
    .title-25 {
      font-size: 25px !important; } }

.title-26 {
  font-size: 26px !important; }

.title-28 {
  font-size: 28px !important; }

.title-30 {
  font-size: 20px !important; }
  @media (min-width: 768px) {
    .title-30 {
      font-size: 30px !important; } }

.title-32 {
  font-size: 21px !important; }
  @media (min-width: 768px) {
    .title-32 {
      font-size: 32px !important; } }

.title-34 {
  font-size: 23px !important; }
  @media (min-width: 768px) {
    .title-34 {
      font-size: 34px !important; } }

.title-42 {
  font-size: 28px !important; }
  @media (min-width: 992px) {
    .title-42 {
      font-size: 42px !important; } }

.title-44 {
  font-size: 29px !important; }
  @media (min-width: 768px) {
    .title-44 {
      font-size: 44px !important; } }

.title-46 {
  font-size: 31px !important; }
  @media (min-width: 768px) {
    .title-46 {
      font-size: 46px !important; } }

.title-49 {
  font-size: 34px !important; }
  @media (min-width: 768px) {
    .title-49 {
      font-size: 41px !important; } }
  @media (min-width: 992px) {
    .title-49 {
      font-size: 49px !important; } }

.title-55 {
  font-size: 36px !important; }
  @media (min-width: 768px) {
    .title-55 {
      font-size: 55px !important;
      line-height: 62px !important; } }

.title-72 {
  font-size: 36px !important; }
  @media (min-width: 768px) {
    .title-72 {
      font-size: 72px !important; } }

.title-80 {
  font-size: 40px !important; }
  @media (min-width: 768px) {
    .title-80 {
      font-size: 80px !important; } }

.title-82 {
  font-size: 52px !important; }
  @media (min-width: 768px) {
    .title-82 {
      font-size: 72px !important;
      line-height: 72px !important; } }
  @media (min-width: 992px) {
    .title-82 {
      font-size: 82px !important;
      line-height: 82px !important; } }

.normal-spacing {
  letter-spacing: normal !important; }

.small {
  font-size: 85%; }

.smalltext {
  font-size: 20px;
  padding-bottom: 5px;
  color: #025091;
  font-family: 'MuseoSans-300';
  text-transform: uppercase; }

hr {
  width: 100%;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #035091;
  margin: 1em 0;
  padding: 0; }
  hr.white-hr {
    border-color: #ffffff; }
  hr.half-hr {
    max-width: 50%;
    margin: 0 auto; }
  hr.dashed-hr {
    border-style: dashed;
    max-width: 70%;
    margin: 1em auto; }
    hr.dashed-hr.full {
      max-width: 100%; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-noTransform {
  text-transform: none !important; }

.no-pd, .no-padding, .no-mg, .no-margin {
}

.no-pd,
.no-padding {
  padding: 0 !important; }

.no-padding-left {
  padding-left: 0 !important; }

.no-padding-right {
  padding-right: 0 !important; }

.no-padding-top {
  padding-top: 0 !important; }

.no-padding-bottom {
  padding-bottom: 0 !important; }

.no-mg,
.no-margin {
  margin: 0 !important; }

.no-pd-mg {
  margin: 0 !important;
  padding: 0 !important; }

.pd-21-13,
.responsive-table td {
  padding: 21px 13px; }

.pd-0-21 {
  padding: 0px 21px; }

.dark-border {
  border: 8px solid #dae4ef;
  border-radius: 20px; }

.light-border {
  border: 8px solid #dae4ef;
  border-radius: 20px; }

.light-border2 {
  border: 8px solid #e4ecf4;
  border-radius: 20px; }

.apps4-product-line {
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4; }

.shadow-1 {
  /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0); }

.shadow-2 {
  /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0); }

.shadow-3 {
  /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0); }

.shadow-4 {
  /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0); }

.shadow-5 {
  /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0); }

.shadow-6 {
  -webkit-box-shadow: 0 14px 20px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0);
          box-shadow: 0 14px 20px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0); }

.shadow-1-h2 {
  /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0);
  -webkit-transition: all 250ms ease-in 250ms;
  transition: all 250ms ease-in 250ms; }
  .shadow-1-h2:hover {
    /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0); }

.shadow-2-h3 {
  /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0);
  -webkit-transition: all 250ms ease-in 250ms;
  transition: all 250ms ease-in 250ms; }
  .shadow-2-h3:hover {
    /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0); }

.shadow-3-h4 {
  /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0);
  -webkit-transition: all 250ms ease-in 250ms;
  transition: all 250ms ease-in 250ms; }
  .shadow-3-h4:hover {
    /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
    -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0); }

.shadow-4-h5 {
  /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0);
  -webkit-transition: all 250ms ease-in 250ms;
  transition: all 250ms ease-in 250ms; }
  .shadow-4-h5:hover {
    /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
    -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0);
            box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0); }

.header-shadow {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  .header-shadow:before {
    position: absolute;
    content: " ";
    width: 100%;
    left: 0%;
    height: 85%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 72%);
    z-index: -1; }

.any-bg, .db-bg, .md-bg, .blue-bg, .solid-blue-bg, .light-gray-bg, .video-bg, .white-bg, .deep-blue-bg, .cool-blue-bg, .img-background {
  padding-bottom: 60px 0;
  text-align: center;
  position: relative; }
  .any-bg.half-padding, .half-padding.db-bg, .half-padding.md-bg, .half-padding.blue-bg, .half-padding.solid-blue-bg, .half-padding.light-gray-bg, .half-padding.video-bg, .half-padding.white-bg, .half-padding.deep-blue-bg, .half-padding.cool-blue-bg, .half-padding.img-background {
    padding: 60px 0 30px; }
  .any-bg.half, .half.db-bg, .half.md-bg, .half.blue-bg, .half.solid-blue-bg, .half.light-gray-bg, .half.video-bg, .half.white-bg, .half.deep-blue-bg, .half.cool-blue-bg, .half.img-background {
    padding: 30px 0; }
  .any-bg.half-padding-top, .half-padding-top.db-bg, .half-padding-top.md-bg, .half-padding-top.blue-bg, .half-padding-top.solid-blue-bg, .half-padding-top.light-gray-bg, .half-padding-top.video-bg, .half-padding-top.white-bg, .half-padding-top.deep-blue-bg, .half-padding-top.cool-blue-bg, .half-padding-top.img-background {
    padding: 30px 0px; }

.db-bg {
  background: #dae4ef !important; }

.md-bg {
  background: #e4ecf4 !important; }

.blue-bg {
  background: #35a4dd !important; }

.light-gray-bg {
  background: #f8f8f8; }

.medium-gray-bg {
  background: #f0f0f0; }

.dual-background {
  background: #e4ecf4;
  background: -webkit-gradient(linear, left top, left bottom, from(#e4ecf4), color-stop(50%, #e4ecf4), color-stop(50%, #dae4ef), to(#dae4ef));
  background: linear-gradient(to bottom, #e4ecf4 0%, #e4ecf4 50%, #dae4ef 50%, #dae4ef 100%); }

.radial-blue {
  background: #025091;
  background: radial-gradient(ellipse at center, #025091 0%, #0C2543 100%);
  background-attachment: fixed; }

.deep-blue-bg {
  background: #184372; }

.solid-blue-bg {
  background: #025091; }
  .solid-blue-bg.is--hidden {
    display: none; }
  @media screen and (min-width: 768px) {
    .solid-blue-bg.vector-hand-thums > .frame {
      position: relative;
      z-index: 1; }
    .solid-blue-bg.vector-hand-thums:after {
      display: none;
      content: '';
      position: absolute;
      right: 0;
      bottom: 0;
      background-image: url(https://images.apps4.com/images/svg-website/hand-csp-program.svg);
      background-repeat: no-repeat;
      width: 650px;
      height: 415px;
      top: 50%;
      margin-top: -207px;
      z-index: 0; } }
  @media screen and (min-width: 768px) and (min-width: 768px) {
    .solid-blue-bg.vector-hand-thums:after {
      display: block; } }

.white-bg {
  background: #ffffff;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover; }
  .white-bg.white_triangle:after {
    content: " ";
    border-left: 60px solid transparent;
    border-top: 30px solid #ffffff;
    position: absolute;
    left: 50%;
    margin-left: -60px;
    z-index: 8;
    bottom: -30px; }

.img-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.small-laptop-background {
  background: url(https://images.apps4.com/images/svg-website/laptop-gif-small.svg) no-repeat;
  max-height: 369px;
  -webkit-box-shadow: 0 50px 12px -50px #333333;
          box-shadow: 0 50px 12px -50px #333333; }
  .small-laptop-background.tablet-holder {
    background: url(https://images.apps4.com/images/svg-website/tablet-gif-small.svg) no-repeat; }

.video-bg {
  background: url("https://images.apps4.com/images/home-page-fallback.png") top center no-repeat !important;
  padding: 30px 0px;
  color: #d4d4d4;
  padding-bottom: 80px;
  overflow: hidden;
  z-index: 0; }
  @media screen and (min-width: 768px) {
    .video-bg {
      background: #3dabe8;
      padding: 20px 0px; } }
  .video-bg .video-hr {
    background: #1B497B url("https://images.apps4.com/images/careers/careers-fallback.jpg") top center no-repeat;
    background-size: cover;
    position: absolute;
    min-width: 115%;
    min-height: 115%;
    width: auto;
    height: auto;
    left: -50px;
    top: -50px;
    z-index: 0;
    display: none;
    opacity: 1;
    z-index: 0; }
    @media screen and (min-width: 768px) {
      .video-bg .video-hr {
        display: block; } }
    .video-bg .video-hr.partners {
      background: #1B497B url("https://images.apps4.com/images/partners/fall-back-video-partner.jpg") top center no-repeat; }
  .video-bg .container-video {
    position: relative;
    z-index: 9;
    background: transparent !important;
    padding: 0px 10px;
    /*.blue-btn {
            margin-right: 20px;
        }*/ }
    .video-bg .container-video h1 {
      font-family: "MuseoSans-100";
      font-size: 43.5px;
      letter-spacing: -2px; }
    @media screen and (min-width: 768px) {
      .video-bg .container-video {
        padding: 0px 15px; } }
    .video-bg .container-video .c-20 img {
      max-width: 30%; }
      @media screen and (min-width: 768px) {
        .video-bg .container-video .c-20 img {
          max-width: 100%; } }

/*
//D365 repetition
Should use .white-bg only
.white-bg-d365{
    background: #fff;
    padding: 60px 10px;
    text-align: center;
    position: relative;
}*/
.cool-blue-bg {
  background: #025091 url("https://images.apps4.com/images/apps4-office-out-focus.jpg") bottom center no-repeat;
  background-size: cover;
  background-attachment: fixed; }

.white-bg-np {
  background: #ffffff;
  position: relative;
  min-height: 705px; }

.dual-bg-white-blue {
  background: #e4ecf4;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, #ffffff), color-stop(50%, #e4ecf4), to(#e4ecf4));
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #e4ecf4 50%, #e4ecf4 100%); }

.dual-bg-blue-white {
  background: #e4ecf4;
  background: -webkit-gradient(linear, left top, left bottom, from(#e4ecf4), color-stop(50%, #e4ecf4), color-stop(50%, #ffffff), to(#ffffff));
  background: linear-gradient(to bottom, #e4ecf4 0%, #e4ecf4 50%, #ffffff 50%, #ffffff 100%); }

.grad-lb-db, .grad-db-lb {
  padding: 60px 0px; }

.grad-lb-db {
  background: -webkit-gradient(linear, left top, right top, from(#35a4dd), to(#267fab));
  background: linear-gradient(to right, #35a4dd, #267fab); }

.grad-db-lb {
  background: -webkit-gradient(linear, right top, left top, from(#35a4dd), to(#267fab));
  background: linear-gradient(to left, #35a4dd, #267fab); }

.md_triangle:after,
.db_triangle:after,
.white_triangle:after {
  content: " ";
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  position: absolute;
  left: 50%;
  margin-left: -60px;
  z-index: 8; }

.md_triangle:after {
  border-top: 30px solid #e4ecf4;
  margin-top: 60px;
  bottom: -30px; }

.db_triangle:after {
  border-top: 30px solid #dae4ef;
  bottom: -28px; }

.white_triangle:after {
  border-top: 30px solid #ffffff; }

/*
.transparent-triangle {
    position: relative;
    top: 140px;
    padding-bottom: 40px;
    background-color: $white;
    &:before {
        content: '';
        position: absolute;
        bottom: 35px;
        width: 100%;
        height: 35%;
        padding-bottom: inherit;
        background-color: inherit;
        clip-path: polygon(50% 70%, 55% 0%, 100% 0%, 100% 100%, 0 100%, 0% 0%, 45% 0%);
    }
}
*/
.clearfix:after {
  content: "";
  display: table;
  clear: both; }

.relative {
  position: relative; }

.list-bullet-yes,
.list-bullet-no {
  padding-left: 1.3em; }

.list-bullet-yes:before,
.list-bullet-no:before {
  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 */ }

.list-bullet-yes:before {
  /* FontAwesome Unicode */
  content: "\f05d";
  color: #7FCB15; }

.list-bullet-no:before {
  /* FontAwesome Unicode */
  content: "\f057";
  color: #e30613; }

.regular-list {
  padding-left: 15px;
  font-size: 17px;
  padding-top: 10px; }
  .regular-list.list-style {
    list-style: disc; }
  .regular-list.list-style-none {
    list-style: none; }
  .regular-list li {
    margin-bottom: 10px; }
    .regular-list li:last-of-type {
      margin-bottom: 0; }

.list-inline li {
  list-style: none;
  display: inline-block; }
  .list-inline li:not(:last-of-type) {
    padding-right: 10px; }

.blue-check-list li {
  font-family: "ProximaNova";
  text-align: left;
  color: #333333;
  font-size: 16px;
  list-style: none;
  background: transparent url("https://images.apps4.com/images/website_images/blue_check.png") left no-repeat;
  margin-bottom: 15px;
  padding-left: 34px;
  line-height: 18px;
  background-size: 18px; }
  @media screen and (min-width: 768px) {
    .blue-check-list li {
      line-height: 24px;
      background-size: 24px; } }

.line-divisor {
  height: 1px;
  background: #d4d4d4;
  width: 100%;
  clear: both;
  margin: 20px 0; }
  .line-divisor.half {
    width: 70%;
    margin: 10px auto; }

.light-blue-divisor {
  position: relative; }
  .light-blue-divisor:after {
    content: "";
    height: 85%;
    width: 1px;
    background: #3dabe8;
    position: absolute;
    right: 0;
    top: 15px; }
    @media (max-width: 37.75em) {
      .light-blue-divisor:after {
        display: none; } }

.dotted-small-separator {
  background-color: #ffffff;
  height: 1px;
  width: 100px;
  border-bottom: 1px dashed #000;
  margin: 15px auto;
  display: block; }

.hide, .hidden {
  display: none !important; }

@media (min-width: 768px) {
  .hide-tablet {
    display: none; } }

.show-tablet {
  display: none; }
  @media (min-width: 768px) {
    .show-tablet {
      display: block; } }

.hide--desktop, .visible-mobile {
  display: block; }
  @media screen and (min-width: 992px) {
    .hide--desktop, .visible-mobile {
      display: none; } }

.hide--mobile, .hidden-mobile {
  display: none; }
  @media screen and (min-width: 992px) {
    .hide--mobile, .hidden-mobile {
      display: block; } }

.cta-combo {
  text-align: center; }
  .cta-combo [class^="button"],
  .cta-combo .big-blue-ghost-btn,
  .cta-combo .big-blue-btn,
  .cta-combo .blue-ghost-btn,
  .cta-combo .blue-btn {
    display: block; }
  .cta-combo .btn-blue-border {
    display: block;
    background: transparent;
    border: 3px solid #025091;
    padding: 15px 0;
    color: #025091;
    font-family: "MuseoSans-300", arial, sans-serif;
    font-size: 18px;
    text-decoration: none; }
    .cta-combo .btn-blue-border:hover {
      background: #025091;
      color: #ffffff; }

.plus-signal:after {
  content: "+";
  border-radius: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 7;
  background-color: #025091;
  font-size: 26px;
  width: 32px;
  height: 32px;
  text-align: center;
  color: #ffffff;
  font-size: 36px;
  font-family: "MuseoSans-500";
  line-height: 100%; }
  @media screen and (min-width: 992px) {
    .plus-signal:after {
      font-size: 72px;
      width: 75px;
      height: 75px; } }

.featured-price {
  font-size: 56px;
  letter-spacing: -3px;
  font-family: "MuseoSans-100";
  margin-bottom: 0px;
  line-height: 42px; }
  .featured-price span {
    display: block;
    font-size: 16px;
    letter-spacing: normal;
    font-family: "MuseoSans-500"; }

.centered-topics li {
  list-style: none;
  font-family: "ProximaNova";
  font-size: 16px;
  padding: 15px 0px;
  border-bottom: 1px solid #dae4ef; }

.blue-bottom-box {
  background: #ffffff;
  position: relative;
  padding: 0 20px;
  min-height: 405px;
  text-align: center;
  height: 100%;
  border-bottom: 5px solid #025091;
  margin: 0 auto;
  max-width: 300px; }
  .blue-bottom-box h3 {
    font-family: "MuseoSans-300", arial, sans-serif;
    font-size: 26px;
    line-height: 38px;
    padding: 20px 0;
    color: #3dabe8;
    font-weight: normal; }
  .blue-bottom-box ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .blue-bottom-box ul li {
      margin-bottom: 30px;
      font-family: "MuseoSans-700", arial, sans-serif;
      font-size: 15px;
      color: #025091;
      text-align: left; }
      .blue-bottom-box ul li span {
        text-decoration: underline;
        cursor: pointer; }

.d-md-divisor {
  border-bottom: 1px solid #e4ecf4; }
  @media (min-width: 992px) {
    .d-md-divisor {
      display: none; } }

[name="c-selection"] {
  border: 1px solid #025091;
  background: #ffffff;
  width: 100%;
  border-radius: 0;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAi0lEQVQYla2QMQ4BARRE399spVSKOIATOJo7qBxGpXADx5BIKGgxT7FLlkphfvGLecXMlMgvan6igBZpganaAlTV0L8CJ4qQZKzu1Ie9kqhe1GWSkQhqqy7UrXrrwbO6TjKR7rrXw0k26jHJSp2+IJF6t+6yzoGZuq+mDsOw9TGPNEBDcf9uXX/f8Qm21nblwB304wAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px);
  font-size: 1.1rem;
  color: #025091;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: .8rem;
  font-family: 'ProximaNova-Bold', sans-serif; }
  [name="c-selection"]::-ms-expand {
    display: none; }
  [name="c-selection"].c-dropdown {
    border-radius: 4px;
    border: 0;
    max-width: 310px;
    text-align: center;
    background-color: #e30613;
    color: #ffffff;
    margin-top: 7px;
    margin: 10px auto 0; }
    @media (min-width: 992px) {
      [name="c-selection"].c-dropdown {
        min-width: 330px; } }
    [name="c-selection"].c-dropdown .option {
      position: relative; }
      [name="c-selection"].c-dropdown .option span {
        font-family: 'ProximaNova-Bold', sans-serif;
        cursor: default; }
      [name="c-selection"].c-dropdown .option ~ ul {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        display: none;
        position: absolute;
        top: calc(100% - 2px);
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 0;
        z-index: 9;
        border-top: 0;
        list-style: none;
        -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
                box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        text-align: left; }
        @media (min-width: 992px) {
          [name="c-selection"].c-dropdown .option ~ ul {
            min-width: 330px; } }
        [name="c-selection"].c-dropdown .option ~ ul li:hover {
          background: #f6f9fb; }
        [name="c-selection"].c-dropdown .option ~ ul a {
          font-size: 1rem;
          padding: .85rem;
          display: block;
          color: #333333;
          font-family: 'ProximaNova-Regular', 'ProximaNova', sans-serif;
          -webkit-transition: -webkit-transform .25s ease-in-out;
          transition: -webkit-transform .25s ease-in-out;
          transition: transform .25s ease-in-out;
          transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out; }
          [name="c-selection"].c-dropdown .option ~ ul a:hover {
            font-family: 'ProximaNova-SemiBold', sans-serif;
            -webkit-transform: translateX(5px);
                    transform: translateX(5px); }
    [name="c-selection"].c-dropdown:hover .option ~ ul {
      display: block; }



LUNARBAR
===================================*/
@font-face {
  font-family: 'luna_barregular';
  src: url("../fonts/lunabar_-webfont.eot");
  src: url("../fonts/lunabar_-webfont.eot?#iefix") format("../fonts/embedded-opentype"), url("../fonts/lunabar_-webfont.woff2") format("woff2"), url("../fonts/lunabar_-webfont.woff") format("woff"), url("../fonts/lunabar_-webfont.ttf") format("truetype"), url("../fonts/lunabar_-webfont.svg#luna_barregular") format("svg");
  font-weight: normal;
  font-style: normal; }

/*=================================
BEBAS
===================================*/
@font-face {
  font-family: 'Bebas Neue Light';
  src: url("../fonts/BebasNeueLight.woff2") format("woff2"), url("../fonts/BebasNeueLight.woff") format("woff");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Bebas Neue Book';
  src: url("../fonts/BebasNeueBook.woff2") format("woff2"), url("../fonts/BebasNeueBook.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Bebas Neue Bold';
  src: url("../fonts/BebasNeueBold.woff2") format("woff2"), url("../fonts/BebasNeueBold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Bebas Neue Regular';
  src: url("../fonts/BebasNeueRegular.woff2") format("woff2"), url("../fonts/BebasNeueRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Bebas Neue Thin';
  src: url("../fonts/BebasNeue-Thin.woff2") format("woff2"), url("../fonts/BebasNeue-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal; }

/*=================================
MUSEO SANS REGULAR
===================================*/
@font-face {
  font-family: 'MuseoSans-100';
  src: url("../fonts/MuseoSans_100.eot?#iefix");
  src: local("☺"), url("../fonts/MuseoSans_100.woff") format("woff"), url("../fonts/MuseoSans_100.ttf") format("truetype"), url("../fonts/MuseoSans_100.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSans-300';
  src: url("../fonts/MuseoSans_300.eot?#iefix");
  src: local("☺"), url("../fonts/MuseoSans_300.woff") format("woff"), url("../fonts/MuseoSans_300.ttf") format("truetype"), url("../fonts/MuseoSans_300.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSans-500';
  src: url("../fonts/MuseoSans_500.eot");
  src: local("☺"), url("../fonts/MuseoSans_500.woff") format("woff"), url("../fonts/MuseoSans_500.ttf") format("truetype"), url("../fonts/MuseoSans_500.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSans-700';
  src: url("../fonts/MuseoSans_700.eot");
  src: local("☺"), url("../fonts/MuseoSans_700.woff") format("woff"), url("../fonts/MuseoSans_700.ttf") format("truetype"), url("../fonts/MuseoSans_700.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSans-900';
  src: url("../fonts/MuseoSans_900.eot");
  src: local("☺"), url("../fonts/MuseoSans_900.woff") format("woff"), url("../fonts/MuseoSans_900.ttf") format("truetype"), url("../fonts/MuseoSans_900.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: LocalArialNarrow;
  src: local("Arial Narrow");
  font-weight: normal;
  font-style: normal; }

/*=================================
MUSEO SANS ITALIC
===================================*/
@font-face {
  font-family: 'MuseoSans-300It';
  src: url("../fonts/MuseoSans_300_Italic.eot");
  src: local("☺"), url("../fonts/MuseoSans_300_Italic.woff") format("woff"), url("../fonts/MuseoSans_300_Italic.ttf") format("truetype"), url("../fonts/MuseoSans_300_Italic.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSans-700It';
  src: url("../fonts/MuseoSans_700_Italic.eot");
  src: local("☺"), url("../fonts/MuseoSans_700_Italic.woff") format("woff"), url("../fonts/MuseoSans_700_Italic.ttf") format("truetype"), url("../fonts/MuseoSans_700_Italic.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSans-900It';
  src: url("../fonts/MuseoSans_900_Italic.eot");
  src: local("☺"), url("../fonts/MuseoSans_900_Italic.woff") format("woff"), url("../fonts/MuseoSans_900_Italic.ttf") format("truetype"), url("../fonts/MuseoSans_900_Italic.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

/*=================================
PROXIMA NOVA
===================================*/
@font-face {
  font-family: 'ProximaNova-Thin';
  src: url("../fonts/ProximaNovaT-Thin.eot");
  src: url("../fonts/ProximaNovaT-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNovaT-Thin.woff") format("woff"), url("../fonts/ProximaNovaT-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova-Light';
  src: url("../fonts/ProximaNova-Light.eot");
  src: url("../fonts/ProximaNova-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Light.woff") format("woff"), url("../fonts/ProximaNova-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova';
  src: url("../fonts/ProximaNova-Regular.eot");
  src: local("☺"), url("../fonts/ProximaNova-Regular.woff") format("woff"), url("../fonts/ProximaNova-Regular.ttf") format("truetype"), url("../fonts/ProximaNova-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova-Bold';
  src: url("../fonts/ProximaNova-Bold.eot");
  src: local("☺"), url("../fonts/ProximaNova-Bold.woff") format("woff"), url("../fonts/ProximaNova-Bold.ttf") format("truetype"), url("../fonts/ProximaNova-Bold.svg") format("svg");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova-BoldIt';
  src: url("../fonts/ProximaNova-BoldIt.eot");
  src: local("☺"), url("../fonts/ProximaNova-BoldIt.woff") format("woff"), url("../fonts/ProximaNova-BoldIt.ttf") format("truetype"), url("../fonts/ProximaNova-BoldIt.svg") format("svg");
  font-weight: 900;
  font-style: italic; }

@font-face {
  font-family: 'ProximaNova-Semibold';
  src: url("../fonts/ProximaNova-Semibold.eot");
  src: url("../fonts/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Semibold.woff") format("woff"), url("../fonts/ProximaNova-Semibold.ttf") format("truetype"), url("../fonts/ProximaNova-Semibold.svg#ProximaNova-Semibold") format("svg");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova-SemiboldIt';
  src: url("../fonts/ProximaNova-SemiboldIt.eot");
  src: url("../fonts/ProximaNova-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-SemiboldIt.woff") format("woff"), url("../fonts/ProximaNova-SemiboldIt.ttf") format("truetype"), url("../fonts/ProximaNova-SemiboldIt.svg#ProximaNova-SemiboldIt") format("svg");
  font-weight: 600;
  font-style: italic; }

@font-face {
  font-family: 'ProximaNova-Light';
  src: url("../fonts/ProximaNova-Light.eot");
  src: url("../fonts/ProximaNova-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Light.woff") format("woff"), url("../fonts/ProximaNova-Light.ttf") format("truetype"), url("../fonts/ProximaNova-Light.svg#ProximaNova-Light") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova-LightIt';
  src: url("../fonts/ProximaNova-LightIt.eot");
  src: url("../fonts/ProximaNova-LightIt.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-LightIt.woff") format("woff"), url("../fonts/ProximaNova-LightIt.ttf") format("truetype"), url("../fonts/ProximaNova-LightIt.svg#ProximaNova-LightIt") format("svg");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: 'ProximaNova-Black';
  src: url("../fonts/ProximaNova-Black.eot");
  src: url("../fonts/ProximaNova-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Black.woff") format("woff"), url("../fonts/ProximaNova-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova-ExtraBold';
  src: url("../fonts/ProximaNova-Extrabld.eot");
  src: url("../fonts/ProximaNova-Extrabld.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Extrabld.woff") format("woff"), url("../fonts/ProximaNova-Extrabld.ttf") format("truetype");
  font-weight: 800;
  font-style: normal; }

/*=================================
LUNARBAR
===================================*/
@font-face {
  font-family: 'luna_barregular';
  src: url("../fonts/lunabar_-webfont.eot");
  src: url("../fonts/lunabar_-webfont.eot?#iefix") format("../fonts/embedded-opentype"), url("../fonts/lunabar_-webfont.woff2") format("woff2"), url("../fonts/lunabar_-webfont.woff") format("woff"), url("../fonts/lunabar_-webfont.ttf") format("truetype"), url("../fonts/lunabar_-webfont.svg#luna_barregular") format("svg");
  font-weight: normal;
  font-style: normal; }

/*=================================
BEBAS
===================================*/
@font-face {
  font-family: 'Bebas Neue Light';
  src: url("../fonts/BebasNeueLight.woff2") format("woff2"), url("../fonts/BebasNeueLight.woff") format("woff");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Bebas Neue Book';
  src: url("../fonts/BebasNeueBook.woff2") format("woff2"), url("../fonts/BebasNeueBook.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Bebas Neue Bold';
  src: url("../fonts/BebasNeueBold.woff2") format("woff2"), url("../fonts/BebasNeueBold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Bebas Neue Regular';
  src: url("../fonts/BebasNeueRegular.woff2") format("woff2"), url("../fonts/BebasNeueRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Bebas Neue Thin';
  src: url("../fonts/BebasNeue-Thin.woff2") format("woff2"), url("../fonts/BebasNeue-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal; }

.fa.fa-check-circle, .fa.fa-plus-circle, .fa.fa-times-circle {
  font-size: 26px; }

.fa.fa-check-circle, .fa.fa-plus-circle {
  color: #7FCB15; }

.fa.fa-times-circle {
  color: #e30613; }

/*
.flat-table-o365 .fa-check-circle,
.flat-table-cloud .fa-check-circle {
	font-size: 22px;
}

.flat-table-o365 .fa-times,
.flat-table-cloud .fa-times {
	font-size: 16px;
}

.csp-table i {
	font-size: 16px !important;
	left: -5px;
	position: relative;
}
*/
.notices--info {
  display: block;
  font-size: 12px;
  font-family: 'Proxima Nova'; }

.add-space {
  width: 100%;
  clear: both;
  height: 50px; }
  .add-space.x2 {
    height: 60px; }
  .add-space.d2 {
    height: 13px; }
  .add-space.d4 {
    height: 8px; }

.shadow_spacer {
  height: 80px;
  width: 100%;
  background: url("../img/shadow.png") top center no-repeat; }
  .shadow_spacer.reduced-margin {
    margin: 0px 0px -30px 0px;
    z-index: 9;
    position: relative; }

.hidden__div {
  display: none; }

/*===================================================
Social links - with new png sprite (Used in footer)
===================================================*/
.social-links {
  min-width: 265px;
  display: inline-block;
  margin-top: 9px; }
  .social-links li {
    display: inline;
    padding: 0 40px 0 0; }
    .social-links li a {
      background: url("https://images.apps4.com/images/svg-website/social_links_vector.png") no-repeat;
      width: 35px;
      position: absolute;
      text-indent: -30000px;
      height: 35px;
      -webkit-transition: none;
      transition: none; }
      .social-links li a.apps4-twitter {
        background-position: 0px -35px; }
        .social-links li a.apps4-twitter:hover {
          background-position: 0px 0px; }
      .social-links li a.apps4-linkedin {
        background-position: -35px -35px; }
        .social-links li a.apps4-linkedin:hover {
          background-position: -35px 0px; }
      .social-links li a.apps4-facebook {
        background-position: -70px -35px; }
        .social-links li a.apps4-facebook:hover {
          background-position: -70px 0px; }
      .social-links li a.apps4-instagram {
        background-position: -104px -35px; }
        .social-links li a.apps4-instagram:hover {
          background-position: -104px 0px; }
      .social-links li a.apps4-youtube {
        background-position: -139px -35px; }
        .social-links li a.apps4-youtube:hover {
          background-position: -139px 0px; }
      .social-links li a.apps4-glassdoor {
        background-position: -174px -35px; }
        .social-links li a.apps4-glassdoor:hover {
          background-position: -174px 0px; }

.range-calculator {
  background: #ffffff;
  padding: 1rem;
  margin-top: 60px;
  -webkit-box-shadow: 0 10px 40px 8px rgba(3, 27, 56, 0.14);
          box-shadow: 0 10px 40px 8px rgba(3, 27, 56, 0.14); }
  .range-calculator.range-calculator-hidden {
    display: none; }
  @media (min-width: 768px) {
    .range-calculator {
      padding: 2rem; } }
  @media (min-width: 992px) {
    .range-calculator {
      padding: 3.75rem; } }
  .range-calculator .fa {
    position: absolute;
    top: 40px;
    right: 40px; }
    .range-calculator .fa:hover {
      cursor: pointer; }
  .range-calculator .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .range-calculator .row.header {
      border-bottom: 1px solid #c5c5c5; }
  .range-calculator hr {
    border-top: 1px solid #c5c5c5; }
  .range-calculator .settings {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%; }
  .range-calculator .controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: .5rem; }
    @media (min-width: 768px) {
      .range-calculator .controls {
        margin: 0; } }
  .range-calculator .price,
  .range-calculator .total {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    -ms-flex-item-align: end;
        align-self: flex-end; }
  .range-calculator input {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem; }
  .range-calculator .price,
  .range-calculator .total,
  .range-calculator input[type="number"] {
    font-size: .9rem; }
    @media (min-width: 768px) {
      .range-calculator .price,
      .range-calculator .total,
      .range-calculator input[type="number"] {
        font-size: 1.25rem; } }
  .range-calculator input[type="number"] {
    color: #025091;
    margin-right: .5rem;
    width: 17%;
    height: 40px;
    text-align: center;
    min-width: 50px; }
  .range-calculator input[type="range"] {
    width: 70%;
    background: transparent;
    -webkit-appearance: none; }
  .range-calculator h4 {
    padding-bottom: .5rem; }
  .range-calculator input[type=range]::-webkit-slider-runnable-track {
    height: 4px;
    background: #d4d4d4;
    border: none;
    border-radius: 3px; }
  .range-calculator input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #025091;
    margin-top: -6px; }
  .range-calculator input[type=range]:focus {
    outline: none; }
  .range-calculator input[type=range]:focus::-webkit-slider-runnable-track {
    background: #d4d4d4; }
  .range-calculator input[type=range]::-moz-range-track {
    height: 4px;
    background: #d4d4d4;
    border: none;
    border-radius: 3px; }
  .range-calculator input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #025091; }
  .range-calculator input[type=range]:-moz-focusring {
    outline: 1px solid #ffffff;
    outline-offset: -1px; }
  .range-calculator input[type=range]:focus::-moz-range-track {
    background: #d4d4d4; }
  .range-calculator input[type=range]::-ms-track {
    height: 4px;
    background: transparent;
    border-color: transparent;
    border-width: 6px 0;
    color: transparent; }
  .range-calculator input[type=range]::-ms-fill-lower {
    background: #777777;
    border-radius: 10px; }
  .range-calculator input[type=range]::-ms-fill-upper {
    background: #d4d4d4;
    border-radius: 10px; }
  .range-calculator input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #025091; }
  .range-calculator input[type=range]:focus::-ms-fill-lower {
    background: #888; }
  .range-calculator input[type=range]:focus::-ms-fill-upper {
    background: #d4d4d4; }

#mktoForm_1003 {
  width: 100% !important; }

.page-wrapper-infokit a:not([class*="button"]):hover {
  text-decoration: underline; }

.page-wrapper-infokit .title,
.page-wrapper-infokit .title-sm {
  font-family: 'ProximaNova-Bold';
  letter-spacing: -1px;
  color: #025091; }

.page-wrapper-infokit .title {
  font-size: 40px;
  margin-bottom: 30px; }

.page-wrapper-infokit .title-sm {
  font-size: 28px;
  margin-bottom: 10px; }

.page-wrapper-infokit .title-light {
  font-family: 'ProximaNova-Light';
  color: #025091;
  letter-spacing: -1px; }

.page-wrapper-infokit p {
  font-family: 'ProximaNova-Light';
  text-align: left;
  line-height: 1.4;
  font-size: 16px; }

.page-wrapper-infokit .box-it {
  border: 1px solid #025091; }

.page-wrapper-infokit ._quote,
.page-wrapper-infokit ._person {
  font-family: 'ProximaNova-BoldIt';
  font-style: italic;
  font-size: 26px; }

.page-wrapper-infokit ._quote {
  color: #025091; }

.page-wrapper-infokit ._person {
  color: #7b7b7b; }

.ik-table {
  padding: 30px 0; }
  .ik-table.table-3col .table-row .table-cell:not(.full-cell) {
    width: 50%; }
    @media screen and (min-width: 768px) {
      .ik-table.table-3col .table-row .table-cell:not(.full-cell) {
        width: 33.333333%; } }
    .ik-table.table-3col .table-row .table-cell:not(.full-cell):first-child {
      width: 100%; }
      @media screen and (min-width: 768px) {
        .ik-table.table-3col .table-row .table-cell:not(.full-cell):first-child {
          width: 33.333333%; } }
    .ik-table.table-3col .table-row .table-cell:not(.full-cell).double-cell {
      width: 100%; }
      @media screen and (min-width: 768px) {
        .ik-table.table-3col .table-row .table-cell:not(.full-cell).double-cell {
          width: 66.666666%; } }
  .ik-table.table-4col, .ik-table.table-5col {
    max-width: 100%;
    overflow: auto; }
    .ik-table.table-4col .table-row, .ik-table.table-5col .table-row {
      min-width: 460px; }
  .ik-table.table-4col .table-row .table-cell:not(.full-cell) {
    width: 25%; }
    .ik-table.table-4col .table-row .table-cell:not(.full-cell).double-cell {
      width: 50%; }
    .ik-table.table-4col .table-row .table-cell:not(.full-cell).triple-cell {
      width: 75%; }
  .ik-table.table-5col .table-row .table-cell:not(.full-cell) {
    width: 20%; }
    .ik-table.table-5col .table-row .table-cell:not(.full-cell).four-columns {
      width: 80%; }
  .ik-table .table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: 'ProximaNova-Light';
    width: 100%; }
    .ik-table .table-row .table-cell {
      padding: 15px;
      font-size: 16px;
      text-align: left;
      border-right: 1px solid #005091;
      border-bottom: 1px solid #005091;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .ik-table .table-row .table-cell:not:first-child {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
      .ik-table .table-row .table-cell:last-child {
        border-right: 0; }
      .ik-table .table-row .table-cell:first-child {
        width: 100%;
        border-right: 0; }
        .ik-table .table-row .table-cell:first-child:not(.full-cell) {
          color: #025091;
          font-family: 'ProximaNova-Bold'; }
          @media screen and (min-width: 768px) {
            .ik-table .table-row .table-cell:first-child:not(.full-cell) {
              border-right: 1px solid #025091; } }
      .ik-table .table-row .table-cell.full-cell {
        width: 100%;
        display: block; }
      .ik-table .table-row .table-cell.half-half-vertical {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 0; }
        .ik-table .table-row .table-cell.half-half-vertical .half {
          width: 100%;
          height: 50%;
          padding: 15px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; }
          .ik-table .table-row .table-cell.half-half-vertical .half:first-child {
            border-bottom: 1px solid #025091; }
      .ik-table .table-row .table-cell.text-center {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
      .ik-table .table-row .table-cell.with-link {
        display: block; }
      .ik-table .table-row .table-cell.empty {
        background: #ffffff; }
      .ik-table .table-row .table-cell.block-cell {
        display: block; }
      .ik-table .table-row .table-cell .text,
      .ik-table .table-row .table-cell .small {
        display: block;
        width: 100%; }
      .ik-table .table-row .table-cell .light {
        font-family: 'ProximaNova-Light'; }
      .ik-table .table-row .table-cell .link {
        display: inline-block;
        font-size: 14px;
        margin-top: 10px; }
      .ik-table .table-row .table-cell ul {
        margin-left: 15px;
        margin-bottom: 0; }
    .ik-table .table-row:nth-child(odd) .table-cell {
      background-color: #F0F0F0; }
    .ik-table .table-row.header-row {
      color: #025091; }
      .ik-table .table-row.header-row .table-cell {
        font-family: 'ProximaNova-Bold';
        background: #ffffff;
        border-top: 1px solid #025091;
        display: inline-block; }
        @media screen and (min-width: 768px) {
          .ik-table .table-row.header-row .table-cell {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; } }
        .ik-table .table-row.header-row .table-cell:first-child {
          font-family: 'ProximaNova-Light';
          -webkit-box-pack: left;
              -ms-flex-pack: left;
                  justify-content: left; }
        .ik-table .table-row.header-row .table-cell.empty {
          background: #ffffff; }
        .ik-table .table-row.header-row .table-cell:not:first-child {
          text-align: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; }
        .ik-table .table-row.header-row .table-cell .light {
          display: inline-block; }

.full-btn {
  width: 100%;
  display: block;
  margin: 30px 0; }

.lightbulb {
  position: relative; }
  .lightbulb:before {
    content: '';
    background-image: url(https://images.apps4.com/images/microsite/infokit/lightbulb.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 35px;
    height: 90px; }

.mod-recommended-reading h3 {
  font-family: 'ProximaNova-Bold';
  color: #025091;
  margin-top: 10px; }

.mod-recommended-reading ._wrapper {
  border: 1px solid #d4d4d4;
  padding: 10px; }

.mod-recommended-reading ._title {
  font-family: 'ProximaNova-Bold';
  color: #025091;
  position: relative;
  font-size: 20px; }
  @media screen and (min-width: 768px) {
    .mod-recommended-reading ._title {
      font-size: 32px; } }
  .mod-recommended-reading ._title span {
    position: absolute;
    background: #ffffff;
    padding: 10px 20px;
    top: 0;
    left: 50%;
    right: 0;
    width: 50%;
    -webkit-transform: translateX(-50%) translateY(-93%);
            transform: translateX(-50%) translateY(-93%);
    display: block; }
    @media screen and (min-width: 768px) {
      .mod-recommended-reading ._title span {
        -webkit-transform: translateX(-50%) translateY(-80%);
                transform: translateX(-50%) translateY(-80%); } }

.infokit-navbar {
  position: relative;
  font-family: 'ProximaNova'; }
  .infokit-navbar a {
    display: block; }
  header .infokit-navbar {
    z-index: 3; }
  .infokit-navbar ul {
    margin: 0px;
    font-size: 0px; }
  .infokit-navbar li {
    display: inline-block;
    font-family: 'ProximaNova-Bold';
    text-transform: uppercase;
    font-size: 14px;
    /*&:first-of-type {
            @media (min-width: 1950px) {
                display:none;
            }
        }*/ }
    .infokit-navbar li a {
      color: #555555; }
  @media screen and (min-width: 768px) {
    .infokit-navbar .apps4-logo {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); } }
  .infokit-navbar .nav-bar-frame {
    display: block; }
    @media screen and (min-width: 768px) {
      .infokit-navbar .nav-bar-frame {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  .infokit-navbar .menu-logo,
  .infokit-navbar .buttons-list {
    display: block;
    width: 100%; }
    @media screen and (min-width: 480px) {
      .infokit-navbar .menu-logo,
      .infokit-navbar .buttons-list {
        display: inline-block;
        width: 43%; } 
.fleche {
  position: absolute;
  bottom: -180px;
  left: 50%;
}
}
  .infokit-navbar .menu-logo {
    padding: 10px 0; }
    @media screen and (min-width: 768px) {
      .infokit-navbar .menu-logo {
        width: 30%;
        padding: 0; }
        .infokit-navbar .menu-logo ul {
          text-align: left; } }
  @media screen and (min-width: 480px) {
    .infokit-navbar .buttons-list ul {
      top: 10px;
      position: relative; } }
  @media screen and (min-width: 480px) {
    .infokit-navbar .buttons-list ul li {
      display: block; } }
  @media screen and (min-width: 768px) {
    .infokit-navbar .buttons-list ul li {
      display: inline-block; } }
  .infokit-navbar .buttons-list ul li:first-of-type {
    display: none; }
  @media screen and (min-width: 768px) {
    .infokit-navbar .buttons-list {
      width: 70%; }
      .infokit-navbar .buttons-list ul {
        top: 0;
        text-align: right; } }
  .infokit-navbar .buttons-list #lang_sel {
    background: none; }
    @media screen and (min-width: 768px) {
      .infokit-navbar .buttons-list #lang_sel {
        position: relative;
        top: 16px;
        line-height: inherit; } }
    .infokit-navbar .buttons-list #lang_sel a.lang_sel_sel {
      line-height: 14px;
      background: none;
      border: none;
      display: block; }
      .infokit-navbar .buttons-list #lang_sel a.lang_sel_sel:hover {
        border: none; }
  .infokit-navbar .infokit-menu {
    position: relative;
    padding-left: 0px;
    margin-right: 14px;
    /*&:before {
            content: '';
            background-image: url(https://images.apps4.com/images/microsite/infokit/hamburger.svg);
            background-repeat: no-repeat;
            position: absolute;
            top: 3px;
            left: 0px;
            width: 18px;
            height: 18px;
        }*/ }
    @media screen and (min-width: 768px) {
      .infokit-navbar .infokit-menu {
        padding-left: 28px;
        margin-right: 30px; } }
    .infokit-navbar .infokit-menu .trigger-menu {
      display: inline-block; }
      .infokit-navbar .infokit-menu .trigger-menu .c-hamburger {
        background-color: transparent; }
        .infokit-navbar .infokit-menu .trigger-menu .c-hamburger span {
          background: #025091; }
          .infokit-navbar .infokit-menu .trigger-menu .c-hamburger span:before, .infokit-navbar .infokit-menu .trigger-menu .c-hamburger span:after {
            background-color: #025091; }
        .infokit-navbar .infokit-menu .trigger-menu .c-hamburger.is-active span {
          background: transparent; }
      .infokit-navbar .infokit-menu .trigger-menu span.infokit-menu-button-text {
        line-height: 45px; }
  .infokit-navbar .red-btn {
    display: block;
    color: #e30613; }
    @media screen and (min-width: 768px) {
      .infokit-navbar .red-btn {
        background-color: #e30613;
        padding: 16px;
        color: #ffffff; } }
  .infokit-navbar .download-infokit {
    padding: 0 10px 5px 0; }
    @media screen and (min-width: 768px) {
      .infokit-navbar .download-infokit {
        padding: 19px;
        border-left: 1px solid #d4d4d4; } }

.infokit-side-nav {
  height: 100%;
  position: fixed;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 350px;
  background: #025091;
  top: 0;
  left: 0;
  overflow: auto;
  overflow-x: hidden;
  z-index: 10;
  display: block;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 146px 50px 50px 50px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 0px 8px;
          box-shadow: rgba(0, 0, 0, 0.2) 1px 0px 8px;
  color: #ffffff;
  font-family: 'ProximaNova-Bold'; }
  @media screen and (min-width: 768px) {
    .infokit-side-nav {
      padding-top: 90px; } }
  .infokit-side-nav.active {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  .infokit-side-nav ul {
    list-style: none;
    margin-bottom: 50px; }
    .infokit-side-nav ul li {
      margin-bottom: 5px;
      font-size: 18px; }
      .infokit-side-nav ul li a {
        display: block;
        color: #ffffff; }
        .infokit-side-nav ul li a:visited, .infokit-side-nav ul li a:active, .infokit-side-nav ul li a:focus {
          color: #ffffff; }
        .infokit-side-nav ul li a:hover {
          color: #3dabe8; }
      .infokit-side-nav ul li.menu-item-type-custom {
        font-size: 19px;
        text-transform: uppercase;
        border-bottom: 1px solid #ffffff;
        margin-bottom: 15px;
        padding-bottom: 10px; }
        .infokit-side-nav ul li.menu-item-type-custom a {
          font-family: "MuseoSans-700", "Helvetica Neue", Helvetica, Arial, sans-serif; }
        .infokit-side-nav ul li.menu-item-type-custom:not(:first-child) {
          margin-top: 1rem; }

.infokit-welcome {
  background: #025091 url(https://images.apps4.com/images/microsite/infokit/Welcome-bg.jpg) top center no-repeat;
  color: #fff;
  background-size: cover;
  padding: 40px 0px 20px 0; }
  .infokit-welcome h1 {
    font-size: 42px;
    letter-spacing: -1px;
    margin-bottom: 30px; }
    .infokit-welcome h1 span {
      font-size: 26px;
      display: block;
      font-family: 'ProximaNova-Bold';
      margin-bottom: 10px; }
  .infokit-welcome p,
  .infokit-welcome h1 {
    font-family: 'ProximaNova-Light'; }
  .infokit-welcome p {
    font-size: 20px; }

.infokit-overview h2 {
  position: relative;
  font-family: 'ProximaNova-Bold';
  color: #025091;
  position: relative;
  z-index: 1;
  margin-bottom: 30px; }
  .infokit-overview h2:before {
    border-top: 1px solid #d4d4d4;
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1; }
  .infokit-overview h2 span {
    background: #ffffff;
    padding: 10px 20px; }

.infokit-overview h3 {
  color: #025091;
  font-family: 'ProximaNova-Bold';
  font-size: 22px;
  margin-top: 20px; }

.infokit-overview p {
  font-family: 'ProximaNova-Light'; }

.infokit-overview .frame {
  margin-bottom: 60px; }

.valet-services-intro .title-sm {
  font-size: 26px;
  margin: 30px 0px; }

.valet-services h3 {
  font-family: 'ProximaNova-Bold';
  color: #025091;
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 32px; }
  .valet-services h3 span {
    display: block;
    font-size: 20px; }

.valet-services p {
  color: #025091; }

.valet-services .box-it {
  padding: 20px;
  min-height: 230px; }

.ik-tools {
  padding-bottom: 0px; }
  .ik-tools p {
    margin-bottom: 30px; }

.ik-webinars-blogs img {
  margin-bottom: 20px; }

.ik-support ul {
  font-family: 'ProximaNova-Light';
  margin: 10px 0px 10px 15px; }

.ik-support li {
  line-height: 1.4; }

.ik-support-score {
  padding: 0px 0px 30px; }
  .ik-support-score img {
    margin: 30px 0px 10px; }

.ik-white-label-support {
  padding-bottom: 0; }
  .ik-white-label-support img,
  .ik-white-label-support p:first-of-type {
    margin-bottom: 30px; }

.ik-dedicated-team {
  padding-bottom: 0; }
  .ik-dedicated-team p {
    margin-bottom: 30px; }

.ik-meet-your-team ._name,
.ik-meet-your-team ._job-title {
  color: #7b7b7b; }

.ik-meet-your-team ._name {
  font-family: 'ProximaNova-Bold';
  margin-top: 10px; }

.ik-meet-your-team ._job-title {
  font-family: 'ProximaNova-Light'; }

.ik-billing img {
  margin-bottom: 30px; }

.ik-billing-quote {
  padding-bottom: 0px; }

.ik-migration ul {
  padding-left: 15px !important;
  font-family: 'ProximaNova-Light'; }

.ik-migration ._header {
  background: #025091;
  padding: 15px 15px 15px 20px;
  color: #ffffff; }

.ik-migration .c-10 {
  position: relative;
  height: 130px; }
  .ik-migration .c-10 p {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

.ik-migration .box-it ul {
  padding: 10px;
  list-style-position: inside; }

.ik-migration .box-it li {
  margin-left: 10px; }

.ik-migration-steps {
  background: url(https://images.apps4.com/images/svg-website/O365-World.svg) no-repeat center center, url(../img/partner-bg.jpg) repeat center center;
  background-size: 680px, auto;
  color: #fff;
  padding: 60px 0;
  min-height: 480px; }
  .ik-migration-steps .intro-list {
    color: #ffffff; }
  .ik-migration-steps #tabs-bar ul {
    border-bottom: 2px solid #6dabe4; }

.ik-cumulus {
  padding-bottom: 0px; }

.ik-cumulus-tabs .title-sm {
  margin-bottom: 30px; }

.ik-cumulus-tabs .arrow-tabbed {
  font-family: 'ProximaNova-Bold';
  font-size: 16px;
  max-width: inherit; }
  .ik-cumulus-tabs .arrow-tabbed li {
    border: none;
    background: #3dabe8; }
    .ik-cumulus-tabs .arrow-tabbed li:hover {
      background: #025091; }
    .ik-cumulus-tabs .arrow-tabbed li a {
      color: #ffffff;
      padding-top: 14.5px;
      padding-left: 18px; }
    .ik-cumulus-tabs .arrow-tabbed li:before, .ik-cumulus-tabs .arrow-tabbed li:after {
      content: initial; }
    .ik-cumulus-tabs .arrow-tabbed li:before {
      content: '';
      position: absolute;
      top: 16px;
      right: 18px;
      width: 20px;
      height: 20px;
      background: transparent;
      border-top: 1px solid #ffffff;
      border-left: 1px solid #ffffff;
      border-right: 1px solid transparent;
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg); }
  .ik-cumulus-tabs .arrow-tabbed li:not(:last-of-type) {
    border-bottom: 1px solid #ffffff; }
  .ik-cumulus-tabs .arrow-tabbed .active {
    background-color: #025091; }

.ik-cumulus-quote {
  padding-bottom: 0px; }

.ik-products {
  padding-bottom: 0; }
  .ik-products .row-products {
    display: block; }
    @media screen and (min-width: 768px) {
      .ik-products .row-products {
        margin-bottom: 20px; } }
    .ik-products .row-products .product-col {
      margin-bottom: 20px;
      padding: 0 10px; }
      @media screen and (min-width: 768px) {
        .ik-products .row-products .product-col {
          margin-bottom: 0; } }
  .ik-products .product {
    position: relative;
    border: 1px solid #025091;
    font-family: 'ProximaNova-Bold';
    color: #025091;
    padding: 20px; }
    @media screen and (min-width: 768px) {
      .ik-products .product {
        height: 100%;
        min-height: 480px; } }
    @media screen and (min-width: 992px) {
      .ik-products .product {
        min-height: 445px; } }
    .ik-products .product ._name {
      margin: 10px 0 20px 0; }
    .ik-products .product ._bottom {
      padding: 20px; }
      @media screen and (min-width: 768px) {
        .ik-products .product ._bottom {
          position: absolute;
          bottom: 0px;
          left: 0px; } }
      .ik-products .product ._bottom ._doc-title {
        font-size: 15px;
        line-height: 1.2;
        padding: 0px;
        min-height: 40px;
        text-decoration: underline;
        -webkit-transition: all .34s ease-in;
        transition: all .34s ease-in;
        cursor: pointer; }
        .ik-products .product ._bottom ._doc-title:hover {
          color: #3dabe8;
          cursor: pointer; }
        .ik-products .product ._bottom ._doc-title span {
          color: #3dabe8;
          text-decoration: underline; }
          .ik-products .product ._bottom ._doc-title span:hover {
            cursor: pointer; }
      .ik-products .product ._bottom .img-holder span {
        background-color: #025091;
        top: 0px;
        right: 0; }
      .ik-products .product ._bottom a:hover {
        cursor: pointer; }
  .ik-products .other-product.box-it {
    border-color: transparent; }
  .ik-products .other-product ._title {
    font-size: 20px;
    font-family: 'ProximaNova-Bold';
    color: #025091;
    margin-bottom: 20px;
    position: relative;
    margin-top: -15px; }
    .ik-products .other-product ._title:before {
      content: '\f00c';
      font-family: fontAwesome;
      color: #7FCB15;
      position: relative;
      left: -5px; }

.ik-margins ul.tabs {
  text-align: left;
  position: relative;
  border-bottom: 1px solid #35a4dd;
  margin-bottom: -6px; }

.ik-margins .tab-content {
  background: white; }

.ik-margins .tab-link {
  position: relative;
  border-left: 1px solid #35a4dd;
  border-top: 1px solid #35a4dd;
  border-right: 1px solid #35a4dd;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-right: 10px; }
  .ik-margins .tab-link.current {
    background: white;
    border-left: 1px solid #35a4dd;
    border-top: 1px solid #35a4dd;
    border-right: 1px solid #35a4dd; }
    .ik-margins .tab-link.current:after {
      content: '';
      position: absolute;
      height: 1px;
      background: #ffffff;
      width: 100%;
      bottom: -1px;
      left: 0;
      z-index: 1; }
  .ik-margins .tab-link .label-tabs {
    color: #35a4dd;
    font-family: 'ProximaNova-Bold';
    font-size: 20px;
    width: 100%;
    text-align: center; }

.infokit-footer {
  background: #025091;
  color: #ffffff;
  padding-top: 0;
  font-family: 'ProximaNova-Bold'; }
  .infokit-footer .wpml-ls-legacy-dropdown {
    width: auto; }
  .infokit-footer .wpml-ls-sub-menu {
    top: inherit;
    bottom: 0; }
  .infokit-footer .wpml-ls-item {
    width: 100%; }
  .infokit-footer .wpml-ls-item-toggle:after {
    z-index: 999;
    font-size: 12px;
    color: #025091; }
  .infokit-footer ul {
    margin: 0px; }
  .infokit-footer li {
    display: inline-block;
    margin: 0px;
    color: #ffffff; }
  .infokit-footer li:not(:last-of-type) {
    margin-right: 8px; }

/* @media (max-width:876px) {
    .mod-recommended-reading {
        ._title {
            font-size: 20px;
        }
    }
} */
/*
@media (max-width: 767px) {
    .ik-migration {
        .c-45,
        .c-10 {
            width: 100%
        }
        .c-10 {
            height: 60px;
        }
    }
}*/
/*@media (max-width: 562px) {
    .mod-recommended-reading {
        ._title span {
            top: -42px;
            width: 70%;
        }
    }
}*/
/*@media (max-width:425px) {
    .mod-did-you-know {
        .btn_blue {
            position: initial;
            display: block;
        }
        .c-30,
        .c-70 {
            width: 100%;
        }
    }
}

@media (max-width: 375px) {
    .mod-recommended-reading {
        ._title span {
            width: 98%;
        }
    }
}
*/
#hasnt-download-content, #open-modal {
  background: #ffffff;
  color: #025091;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  width: 90%;
  padding: 40px 25px 0; }
  @media screen and (min-width: 992px) {
    #hasnt-download-content, #open-modal {
      max-width: 870px;
      margin: 0 auto; } }
  #hasnt-download-content ul, #open-modal ul {
    font-size: 1rem;
    padding-left: 17px;
    padding-bottom: 15px; }
  #hasnt-download-content .section-title, #open-modal .section-title {
    font-size: 32px;
    line-height: 36px;
    padding-bottom: 15px; }
  #hasnt-download-content form, #open-modal form {
    width: inherit !important;
    margin: -15px 0 0 0; }
    #hasnt-download-content form .mktoOffset, #open-modal form .mktoOffset {
      display: none; }
    @media (min-width: 768px) {
      #hasnt-download-content form .mktoFormRow, #open-modal form .mktoFormRow {
        width: 50%;
        float: left;
        padding: 0 15px 0 0;
        clear: inherit; } }
    #hasnt-download-content form .section-title, #open-modal form .section-title {
      font-size: 32px;
      line-height: 36px; }
    #hasnt-download-content form .mktoButtonRow, #open-modal form .mktoButtonRow,
    #hasnt-download-content form .mktoFieldWrap,
    #open-modal form .mktoFieldWrap,
    #hasnt-download-content form .mktoFormCol,
    #open-modal form .mktoFormCol {
      width: 100%;
      text-align: center; }
    #hasnt-download-content form .mktoFormRow:nth-last-child(2), #open-modal form .mktoFormRow:nth-last-child(2), #hasnt-download-content form .mktoFormRow:nth-last-child(1), #open-modal form .mktoFormRow:nth-last-child(1) {
      padding-bottom: 0; }
    #hasnt-download-content form label, #open-modal form label {
      font-family: "ProximaNova-regular", arial, sans-serif;
      font-weight: normal;
      color: #025091; }
    #hasnt-download-content form input, #open-modal form input {
      font-family: "ProximaNova", arial, sans-serif;
      color: #025091;
      border-radius: 0;
      width: 100% !important; }
      #hasnt-download-content form input:not([type='checkbox']), #open-modal form input:not([type='checkbox']) {
        min-height: 40px; }
    #hasnt-download-content form .mktoButtonWrap.mktoRound, #open-modal form .mktoButtonWrap.mktoRound {
      margin-left: inherit !important;
      position: relative; }
    #hasnt-download-content form .mktoButton, #open-modal form .mktoButton {
      /*font-family: "ProximaNova-bold", arial, sans-serif;
            color: #fcfcfc;
            cursor: pointer;
            display: inline-block;
            letter-spacing: .5px;
            outline: none;
            position: relative;
            background: $red !important;
            box-shadow: 0 6px $red-is-active;
            transition: all 0.3s;
            margin-top:10px;
            min-width:250px;
            padding: 14px 15px !important;
            width: inherit;*/ }

.privacy--link {
  text-align: center;
  opacity: .3;
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
  font-family: sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: inherit; }
  .privacy--link:hover {
    opacity: .3;
    color: inherit; }

.shadow-image {
  -webkit-box-shadow: 0 10px 22px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 22px 0 rgba(0, 0, 0, 0.1); }

.red-sticker {
  background: #e30613;
  color: #ffffff;
  padding: 1.5rem 0.7rem;
  text-align: center;
  font-size: 12px;
  width: 100%;
  line-height: 18px; }
  @media screen and (min-width: 992px) {
    .red-sticker {
      position: absolute;
      top: -10px;
      right: -10px;
      width: 100px;
      border-radius: 50%;
      height: 100px; } }

.infokit-side-nav .current_page_item a {
  font-family: 'MuseoSans-700', sans-serif;
  border-bottom: 1.5px solid #3dabe8;
  display: inline-block; }

#newsroom {
  padding: 60px 0; }
  #newsroom .card-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .single-news .article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (min-width: 992px) {
      .single-news .article .card-image {
        min-height: 300px; } }
  #newsroom .featured .article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 255px; }
  #newsroom .featured h1 {
    font-size: 1.6rem; }
    @media (min-width: 992px) {
      #newsroom .featured h1 {
        font-size: 2.6rem;
        line-height: 1em;
        padding-bottom: .5rem; } }
  #newsroom .featured .card-image {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
    border-right: 1px solid #c5c5c5;
    display: none; }
    @media (min-width: 992px) {
      #newsroom .featured .card-image {
        display: block; } }
  #newsroom .featured .meta {
    padding: .65rem 0 .45rem; }
  #newsroom .featured .card-body {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    padding: 2.75rem 2rem 2.5rem; }
    @media (min-width: 992px) {
      #newsroom .featured .card-body {
        -ms-flex-preferred-size: calc(100% - 33%);
            flex-basis: calc(100% - 33%); } }
  #newsroom .posts .card-body {
    padding: 1.3rem 2rem 2.5rem; }
  #newsroom .posts .meta {
    padding: .55rem 0 .45rem; }
  #newsroom .card-image.cover {
    height: 135px; }
  #newsroom .meta > b {
    font-size: 14px; }
  #newsroom .card-body > h1,
  #newsroom .card-body > h3,
  #newsroom .meta > b {
    font-family: "ProximaNova-Bold", arial, sans-serif; }
  #newsroom .excerpt {
    font-size: 1rem;
    line-height: 1.4rem; }
  #newsroom .article {
    border: 1px solid #c5c5c5;
    min-height: 460px; }
  #newsroom [class*="button-"] {
    margin: 1rem 0 0; }
  #newsroom .prev-next-news {
    font-size: 14px;
    list-style: none;
    font-family: "ProximaNova-Bold", arial, sans-serif;
    display: none; }
    @media (min-width: 992px) {
      #newsroom .prev-next-news {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    #newsroom .prev-next-news li {
      max-width: 420px;
      line-height: 21px; }

/*===================================================
Accordion Module
====================================================*/
.accordion-toggle.mob-accordion-module {
  cursor: pointer;
  margin: 0;
  border-radius: 0; }
  .accordion-toggle.mob-accordion-module h5 {
    font-size: 21px;
    padding: 0 40px 0 10px; }
  .accordion-toggle.mob-accordion-module:after {
    content: url("https://images.apps4.com/images/svg-website/animated-blue-arrow.svg");
    margin-top: -7px; }
  .accordion-toggle.mob-accordion-module.active-accordion {
    background-color: #025091; }
    .accordion-toggle.mob-accordion-module.active-accordion:after {
      content: url("https://images.apps4.com/images/svg-website/animated-white-arrow.svg");
      margin-top: -24px; }
    .accordion-toggle.mob-accordion-module.active-accordion h5 {
      color: #ffffff; }

.accordion-content {
  display: none;
  margin: 0 0 10px 0;
  font-family: "ProximaNova";
  background: #ffffff; }
  .accordion-content ul {
    padding-left: 20px; }
  .accordion-content p {
    padding: 20px; }

.accordion-with-links .accordion-toggle.mob-accordion-module {
  margin-bottom: 0;
  border-bottom: 0; }
  .accordion-with-links .accordion-toggle.mob-accordion-module h5 {
    padding-left: 10px; }

.accordion-with-links .accordion-content {
  background-color: #ffffff;
  padding: 0; }
  .accordion-with-links .accordion-content ul.links-list {
    padding-left: 0; }
  .accordion-with-links .accordion-content ul li {
    list-style: none;
    padding: 0 0 0 30px; }
    .accordion-with-links .accordion-content ul li a.link {
      position: relative;
      color: #333333;
      display: block;
      width: 100%;
      padding: 20px 20px 20px 0;
      text-align: left;
      position: relative;
      font-size: 17px; }
      .accordion-with-links .accordion-content ul li a.link:after {
        position: absolute;
        content: '';
        display: block;
        height: 1px;
        background-color: #d4d4d4;
        width: 100%;
        left: 0;
        bottom: 0; }
      .accordion-with-links .accordion-content ul li a.link span.icon {
        position: absolute;
        width: 23px;
        height: 30px;
        display: block;
        top: 14px;
        right: 33px; }
        .accordion-with-links .accordion-content ul li a.link span.icon:after {
          content: '';
          width: 100%;
          height: 100%;
          display: block;
          background-repeat: no-repeat;
          background-size: cover;
          background-position: top center; }
      .accordion-with-links .accordion-content ul li a.link.pdf span.icon:after {
        background-image: url("https://images.apps4.com/images/svg-website/file-type-pdf.svg"); }
    .accordion-with-links .accordion-content ul li:last-child a.link:after {
      display: none; }

.faq-office365,
.mob-accordion-module {
  border-bottom: 3px solid #dae4ef;
  background: #ffffff;
  border-radius: 3px;
  margin: 20px;
  padding: 20px;
  text-align: left;
  position: relative; }
  .faq-office365 h5,
  .mob-accordion-module h5 {
    padding: 10px 0 20px;
    font-size: 26px;
    color: #025091;
    font-family: "ProximaNova";
    margin: 0;
    font-weight: normal; }

.mob-accordion-module:after {
  content: url("https://images.apps4.com/images/cloud-servers/arrow-mobile-menu.png");
  display: inline-block;
  height: 31px;
  width: 31px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  position: absolute;
  right: 30px;
  margin-top: -15px;
  top: 50%; }

.mob-accordion-module.active-accordion:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

#accordion .accordion-content {
  padding: 20px 40px; }

#accordion.data--table-accordion .mob-accordion-module {
  border-radius: 0px;
  margin: 0px;
  border-bottom: 2px solid #dae4ef;
  padding: 10px 0px 10px 0px;
  -webkit-transition: all .35s ease-in .1s;
  transition: all .35s ease-in .1s; }
  #accordion.data--table-accordion .mob-accordion-module.accordion-toggle:hover {
    background: #dae4ef; }
  #accordion.data--table-accordion .mob-accordion-module.accordion-toggle.active-accordion {
    background: #ffffff; }

#accordion.data--table-accordion .accordion-content {
  padding: 0px; }

.data--table-accordion table {
  border-collapse: collapse;
  width: 100%; }

.data--table-accordion td:first-of-type {
  width: 10%; }

.data--table-accordion td:nth-child(2) {
  width: 20%; }

.data--table-accordion td:nth-child(6) {
  width: 25%; }

.data--table-accordion td:last-of-type a {
  text-decoration: none;
  font-family: "ProximaNova-bold";
  font-weight: normal;
  background: #7FCB15;
  color: #ffffff !important;
  padding: 5px 10px; }

.data--table-accordion table tbody tr:nth-child(even) {
  background: #e4ecf4; }

.data--table-accordion th:last-child {
  width: 11.5%; }

.data--table-accordion th,
.data--table-accordion td {
  line-height: 1.5;
  padding: 0.75em;
  text-align: left; }

.data--table-accordion table tbody tr td {
  font-family: "ProximaNova";
  color: #025091; }

@media (max-width: 30em) {
  .data--table-accordion td:first-of-type {
    width: inherit; }
  .data--table-accordion td:nth-child(2) {
    width: inherit; }
  .data--table-accordion td:nth-child(6) {
    width: inherit; }
  .data--table-accordion thead tr {
    position: absolute;
    top: -9999em;
    left: -9999em; }
  .data--table-accordion tr {
    border: 1px solid #025091;
    border-bottom: 0; }
  .data--table-accordion tr + tr {
    margin-top: 1.5em; }
  .data--table-accordion tr,
  .data--table-accordion td {
    display: block; }
  .data--table-accordion td {
    border: none;
    border-bottom: 1px solid #025091;
    padding-left: 50%; }
  .data--table-accordion td:before {
    content: attr(data-label);
    display: inline-block;
    font-weight: bold;
    line-height: 1.5;
    margin-left: -100%;
    width: 100%; } }

@media (max-width: 20em) {
  .data--table-accordion td {
    padding-left: 0.75em; }
  .data--table-accordion td:before {
    display: block;
    margin-bottom: 0.75em;
    margin-left: 0; } }

.data--table-accordion thead {
  font-family: "ProximaNova-Bold";
  background: #dae4f0;
  color: #025091; }

@media only screen and (min-width: 1200px) {
  body.fr .data--table-accordion table tbody tr td:last-of-type {
    width: 14%; } }

.smaller-accordion .accordion-toggle.mob-accordion-module:after {
  width: 16px;
  height: 16px; }

.smaller-accordion .accordion-toggle.mob-accordion-module.active-accordion:after {
  margin-top: inherit; }

/*===================================================
Animated background
====================================================*/
@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
@keyframes Gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

.animated-background {
  background: linear-gradient(-45deg, #31a5de, #0b5a99, #0B5A95, #1171bd);
  background-size: 400% 400%;
  -webkit-animation: Gradient 15s ease infinite;
          animation: Gradient 15s ease infinite; }
  .animated-background.ebook-cover {
    overflow: hidden;
    padding: 60px 0; }
    .animated-background.ebook-cover .section-title {
      font-size: 29px;
      line-height: normal;
      font-family: 'MuseoSans-700'; }
    @media (min-width: 768px) {
      .animated-background.ebook-cover ul {
        padding-bottom: 30px; } }
    .animated-background.ebook-cover ul li {
      margin-bottom: 5px; }
    .animated-background.ebook-cover img {
      display: none; }
      @media (min-width: 992px) {
        .animated-background.ebook-cover img {
          display: block;
          position: relative;
          margin-bottom: -50%;
          left: -10%; } }
    .animated-background.ebook-cover [src*="autotask"] {
      margin-bottom: -30%; }

.video-block {
  background: #1B497B;
  background-size: cover;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  display: block;
  opacity: 1;
  z-index: 0; }

.holder-blocks {
  width: 100%;
  height: 480px;
  display: table; }
  .holder-blocks.ebook {
    height: 730px; }
    .holder-blocks.ebook.cloud-servers .holder-1 {
      background: #025091 url("../img/cloud-servers-report.jpg") left center no-repeat;
      background-size: cover;
      color: #ffffff;
      height: 100%;
      width: 35%;
      position: relative;
      display: table-cell;
      vertical-align: middle; }
    .holder-blocks.ebook .holder-1 {
      background: #025091 url("../img/hosted_exchange_ebook_tablet.png") left center no-repeat;
      color: #ffffff;
      background-size: cover;
      height: 100%;
      width: 35%;
      position: relative;
      display: table-cell;
      vertical-align: middle; }
      .holder-blocks.ebook .holder-1 .holder-2 {
        float: left;
        height: 100%;
        position: relative;
        padding: 0 30px;
        display: table-cell; }
  @media screen and (min-width: 1400px) {
    .holder-blocks:not(.ob-holder) .holder-1, .holder-blocks:not(.ob-holder) .holder-2 {
      width: 50%; } }
  .holder-blocks .holder-1 {
    background: #025091 url("../img/partner-header-background-b.jpg") center center no-repeat;
    color: #ffffff;
    background-size: cover;
    height: 100%;
    width: 35%;
    position: relative;
    display: table-cell;
    /*&.career-mkt-avantages {
            background-image: url("../img/careers-mkt-benefits.jpg");
        }*/ }
    .holder-blocks .holder-1.apps4_hosted_exchange {
      background-image: url("../img/apps4_hosted_exchange.jpg"); }
    .holder-blocks .holder-1.remote-desktop-apps {
      background-image: url("https://images.apps4.com/images/cloud-servers/guide-remote-desktop.jpg"); }
    .holder-blocks .holder-1.remote-desktop-apps-multi {
      background-image: url("https://images.apps4.com/images/cloud-servers/Guide-Multi-RDS.jpg"); }
    .holder-blocks .holder-1.cloud-tech-101 {
      background-image: url("../img/cloud-tech-101.jpg"); }
    .holder-blocks .holder-1.what_is_hosted_exchange {
      background-image: url("../img/what_is_hosted_exchange.jpg"); }
    .holder-blocks .holder-1.block-cumulus-screen {
      background-image: url("https://images.apps4.com/images/block-cumulus-image.jpg"); }
    .holder-blocks .holder-1.what-is-npscore {
      background-image: url("../img/what-is-npscore.jpg"); }
    .holder-blocks .holder-1.take-a-look {
      background-image: url("../img/take-a-look.jpg"); }
    .holder-blocks .holder-1.protection-mailboxes {
      background-image: url("../img/protection-mailboxes.jpg"); }
    .holder-blocks .holder-1.why_hosted_exchange {
      background-image: url("../img/why_hosted_exchange.jpg"); }
    .holder-blocks .holder-1.msp_var_agents {
      background-image: url("../img/msp_var_agents.jpg"); }
    .holder-blocks .holder-1.apps4-cloud-servers {
      background-image: url("../img/apps4-cloud-servers.jpg"); }
    .holder-blocks .holder-1.career-dev-avantages {
      background-image: url("https://images.apps4.com/images/careers/avantages-dev.jpg"); }
    .holder-blocks .holder-1.career-ops-avantages {
      background-image: url("https://images.apps4.com/images/careers/avantages-sysadmin.jpg"); }
    .holder-blocks .holder-1.career-customerservices-avantages {
      background-image: url("https://images.apps4.com/images/careers/avantages-sac.jpg"); }
    .holder-blocks .holder-1.career-sales-avantages {
      background-image: url("https://images.apps4.com/images/careers/avantages-sales.jpg"); }
    .holder-blocks .holder-1.presales-architects {
      background-image: url("https://images.apps4.com/images/cloud-servers/presales-architects.jpg"); }
    .holder-blocks .holder-1.smb-ebook {
      background-image: url("https://images.apps4.com/ebook/Profit-Selling-Office-365-eBook.gif"); }
    .holder-blocks .holder-1.o365-ebook {
      background-image: url("https://images.apps4.com/eBook/small-business-office365.gif"); }
    .holder-blocks .holder-1.cloud-disaster-recovery {
      background-image: url("https://images.apps4.com/images/cloud-disaster-recovery.jpg"); }
    .holder-blocks .holder-1.sharepoint-expert-management {
      background-image: url("https://images.apps4.com/images/sharepoint/multi/expert-management.jpg"); }
    .holder-blocks .holder-1.sharepoint-reliable-performance {
      background-image: url("https://images.apps4.com/images/sharepoint/multi/reliable-performance.jpg"); }
    .holder-blocks .holder-1.looking-invoice {
      background-image: url("https://images.apps4.com/images/looking-laptop.jpg"); }
    .holder-blocks .holder-1.interactive-app {
      background-image: url("https://images.apps4.com/interactive-app.jpg"); }
    .holder-blocks .holder-1.sharepoint-dedicated-support {
      background-image: url("https://images.apps4.com/images/sharepoint/multi/dedicated-support.jpg"); }
    .holder-blocks .holder-1.sharepoint-guaranteed-satisfaction {
      background-image: url("https://images.apps4.com/images/sharepoint/multi/satisfied.jpg"); }
    .holder-blocks .holder-1.the-modern-business-is-digital {
      background-image: url("https://images.apps4.com/images/online-backup/reseller-page/the-modern-business-is-digital.jpg"); }
    .holder-blocks .holder-1.data-protection-includes-cloud-backup {
      background-image: url("https://images.apps4.com/images/online-backup/reseller-page/data-protection-includes-cloud-backup.jpg"); }
    .holder-blocks .holder-1.no-business-is-immune-to-cyber-attacks {
      background-image: url("https://images.apps4.com/images/online-backup/reseller-page/no-business-is-immune-to-cyber-attacks.jpg"); }

.holder-2 {
  width: 65%;
  height: 100%;
  position: relative;
  padding: 0 30px;
  display: table-cell;
  vertical-align: middle; }

.left-content {
  padding: 25px; }
  .left-content.centered-div {
    margin: 0 auto;
    max-width: 650px; }
  .left-content h3,
  .left-content h4 {
    max-width: 650px;
    /*font-family: "MuseoSans-500", arial, sans-serif;
        font-size: 36px;
        color: $primary;
        font-weight: normal;
        +p {
            font-family: "MuseoSans-300";
            font-weight: normal;
            color: $secondary;
            font-size: 26px;
            line-height: 26px;
            margin: 10px 0 0;
        }*/ }
  .left-content .my_list {
    font-family: "ProximaNova";
    color: #333333;
    font-size: 16px;
    line-height: 26px;
    padding: 0 0 30px; }
    .left-content .my_list:after {
      content: "";
      display: table;
      clear: both; }
    .left-content .my_list ul {
      float: left;
      padding: 0 50px 0 0; }
  .left-content p {
    max-width: 550px;
    /*font-family: "ProximaNova";
        font-size: 16px;
        color: $grey;
        line-height: 26px;
        margin: 30px 0 40px;*/ }
  .left-content > ul {
    max-width: 650px;
    /*font-family: "ProximaNova";
        font-size: 15px;
        color: $grey;
        line-height: 25px;
        margin: 20px 0;
        padding: 0 15px;*/ }

.right-content {
  padding: 25px; }
  @media screen and (min-width: 768px) {
    .right-content {
      float: right; } }
  .right-content.centered-div {
    float: none;
    margin: 0 auto;
    max-width: 650px; }
  .right-content:after {
    content: "";
    display: table;
    clear: both; }
  .right-content h4 {
    max-width: 650px;
    /*font-family: "MuseoSans-500", arial, sans-serif;
        font-size: 36px;
        color: $primary;
        margin: 0;
        font-weight: normal;
        +p {
            font-family: "MuseoSans-300";
            font-weight: normal;
            color: $secondary;
            font-size: 18px;
            line-height: 26px;
            margin: 10px 0 0;
        }*/ }
  .right-content p {
    max-width: 550px;
    /*font-family: "ProximaNova";
        font-size: 16px;
        color: $grey;
        line-height: 26px;
        margin: 30px 0 40px;*/ }
  .right-content > ul {
    max-width: 650px;
    /*font-family: "ProximaNova";
        font-size: 15px;
        color: $grey;
        line-height: 25px;
        margin: 20px 0;
        padding: 0 15px;*/ }

.gradient-black-filter {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(11, 11, 11, 0)), to(rgba(11, 11, 11, 0)));
  background: linear-gradient(to bottom, rgba(11, 11, 11, 0) 0, rgba(11, 11, 11, 0) 100%);
  padding: 0 0 55px;
  height: 100%; }

/*===================================================
CHAT MODULE AND SIDE TRIGGERS FOR CONTENT
====================================================*/
.side-chat-trigger, .visible-side-sales-chat,
.visible-partner-chat, .side-chat-trigger .open_sales_chat, .side-chat-trigger .open_partner_chat, .side-chat-trigger a.trigger-side-content, a.become-partner {
  position: fixed;
  top: 440px;
  z-index: 9;
  width: 63px;
  height: 103px;
  text-indent: -99999px;
  cursor: pointer;
  display: none;
  background: url("../img/chat.gif"); }
  @media (min-width: 768px) {
    .side-chat-trigger:not(.visible-side-sales-chat), .visible-side-sales-chat:not(.visible-side-sales-chat),
    .visible-partner-chat:not(.visible-side-sales-chat), .side-chat-trigger .open_sales_chat:not(.visible-side-sales-chat), .side-chat-trigger .open_partner_chat:not(.visible-side-sales-chat), .side-chat-trigger a.trigger-side-content:not(.visible-side-sales-chat), a.become-partner:not(.visible-side-sales-chat) {
      display: block; } }

.request-demo-cloud-servers {
  background: #e30613;
  color: #ffffff;
  padding: 10px 25px 5px;
  cursor: pointer;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  left: 0;
  position: fixed;
  top: 300px;
  font-size: 16px;
  font-family: 'MuseoSans-500', arial, sans-serif;
  z-index: 9;
  display: none; }
  .request-demo-cloud-servers:hover {
    color: #ffffff; }
  @media screen and (min-width: 768px) {
    .request-demo-cloud-servers {
      display: block; } }

.side-chat-trigger a.trigger-side-content, .visible-side-sales-chat a.trigger-side-content, .visible-partner-chat a.trigger-side-content, a.become-partner a.trigger-side-content {
  height: 123px;
  top: 300px;
  background: url("../img/infokit.png"); }

a.become-partner {
  height: 251px;
  top: 170px;
  background: url("../img/side-become-partner.png"); }

#side-request-content {
  height: 100%;
  position: fixed;
  width: 335px;
  background: #ffffff;
  top: 0;
  right: 0;
  overflow: auto;
  overflow-x: hidden;
  z-index: 10;
  display: none;
  padding: 30px; }
  #side-request-content .inside-content {
    padding: 30px 0; }
  #side-request-content label {
    font-family: 'ProximaNova-Bold' !important;
    font-size: 14px !important;
    font-style: normal !important;
    color: #025091 !important;
    width: 100% !important; }
  #side-request-content input[type],
  #side-request-content textarea {
    font-family: 'ProximaNova' !important;
    color: #333333 !important; }

#side-request-content::-webkit-scrollbar {
  width: 10px;
  height: 12px; }

#side-request-content::-webkit-scrollbar-thumb {
  background: #025091; }
  #side-request-content::-webkit-scrollbar-thumb:hover {
    background: #0b0b0b; }

#side-request-content::-webkit-scrollbar-track-piece {
  background: #ffffff; }

#close-request-content {
  cursor: pointer;
  padding: 15px 40px 15px 0;
  color: #025091;
  font-family: "ProximaNova", Arial, sans-serif;
  text-align: right;
  width: 100%;
  position: relative;
  font-size: 20px; }
  #close-request-content:after {
    content: '';
    background: transparent url("https://images.apps4.com/images/website_images/close-left-menu.png") right no-repeat;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 0;
    top: 10px; }

/* MARKETO STYLES PARTNER SIDE  SECTION
   ==================================================== */
#side-request-content label.mktoLabel {
  padding: 0px 0px 5px 0px;
  cursor: pointer; }

#side-request-content .mktoForm input[type],
#side-request-content .mktoForm select.mktoField,
#side-request-content .mktoForm textarea.mktoField {
  height: 40px;
  margin: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #025091 !important;
  border-radius: 0px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  z-index: 2; }

#side-request-content .mktoButtonRow {
  margin-top: 15px !important;
  text-align: center;
  display: block; }
  #side-request-content .mktoButtonRow .mktoButtonWrap {
    margin-left: 0 !important; }

a.open_partner_chat:hover {
  cursor: pointer; }

body.fr a.become-partner {
  position: fixed;
  top: 170px;
  z-index: 9;
  background: url("../img/side-become-partner-fr.png");
  width: 63px;
  height: 251px;
  text-indent: -99999px;
  cursor: pointer; }

body.fr .visible-side-sales-chat, body.fr .visible-partner-chat, body.fr .side-chat-trigger a.open_sales_chat, body.fr .visible-side-sales-chat a.open_sales_chat, body.fr .visible-partner-chat a.open_sales_chat, .side-chat-trigger body.fr .open_sales_chat a.open_sales_chat, .side-chat-trigger body.fr .open_partner_chat a.open_sales_chat, .side-chat-trigger body.fr a.trigger-side-content a.open_sales_chat, body.fr a.become-partner a.open_sales_chat, body.fr .side-chat-trigger a.open_partner_chat, body.fr .visible-side-sales-chat a.open_partner_chat, body.fr .visible-partner-chat a.open_partner_chat, .side-chat-trigger body.fr .open_sales_chat a.open_partner_chat, .side-chat-trigger body.fr .open_partner_chat a.open_partner_chat, .side-chat-trigger body.fr a.trigger-side-content a.open_partner_chat, body.fr a.become-partner a.open_partner_chat {
  position: fixed;
  top: 460px;
  z-index: 9;
  background: url("../img/chat-fr.gif");
  width: 63px;
  height: 158px;
  text-indent: -99999px;
  cursor: pointer; }

body.fr .visible-side-sales-chat {
  left: -3px;
  display: none; }

.personna-chat, .personna--talk, .personna--image, .personna--header, .personna--cursor {
  display: none; }

/* 
.personna-chat {
    border: 1px solid $lightgrey;
    display: inline-block;
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.23);
    font-family: 'MuseoSans-500';
    color: $white;
    background: $white;
    transform: translateX(400px);
    transition: all .34s ease-in .34s;
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 9;
    display: none !important;
    &.is-visible {
        transform: translateX(0px);
    }
    .personna--close {
        position: absolute;
        top: 0px;
        right: 0px;
        background: $lightgrey;
        width: 35px;
        height: 100%;
        color: $white;
        line-height: 48px;
        font-family: 'MuseoSans-100';
        font-size: 22px;
        &:hover {
            cursor: pointer;
        }
    }
    .personna--header {
        border-bottom: 1px solid $lightgrey;
        padding: 15px 0px;
        position: relative;
        color: $grey;
        background: rgba($white, 0.4);
        font-size: 14px;
        font-family: 'ProximaNova-Bold';
        line-height: 16px;
        font-weight: 300;
        text-align: center;
        text-shadow: 0px 1px 0px $white;
        p {
            margin-bottom: 0px;
        }
    }
    .personna--image {
        float: left;
        padding: 20px;
        img {
            width: 135px;
            height: 135px;
        }
    }
    .personna--talk {
        float: right;
        padding: 15px 15px 0px 15px;
        line-height: 18px;
        .left--talk {
            float: left;
            text-align: left;
            padding: 10px;
            background: $secondary;
            border-radius: 5px;
            margin: 10px 0px 10px -10px;
            position: relative;
            &:before {
                content: "";
                background: url("https://images.apps4.com/images/svg-website/lightblue-bubble-speech.svg");
                width: 19px;
                height: 18px;
                position: absolute;
                left: -10px;
                bottom: -4px;
                zoom: 2;
            }
        }
        .right--talk {
            float: right;
            text-align: right;
            padding: 10px;
            background: $green;
            border-radius: 5px;
            clear: left;
            position: relative;
            display: none;
            &:after {
                content: "";
                background: url("https://images.apps4.com/images/svg-website/green-bubble-speech.svg");
                width: 19px;
                height: 18px;
                position: absolute;
                right: -10px;
                bottom: -4px;
                transform: scaleX(-1);
            }
        }
        p {
            margin-bottom: 10px;
        }
    }
    .personna--cursor {
        border-top: 1px solid $lightgrey;
        padding: 10px;
        text-align: left;
        font-family: "ProximaNova";
        display: none;
    } //    &:hover {
    //        cursor: pointer;
    //    }
    .inner a {
        color: $white !important;
    }
}

@media (max-width: $medium) {
    .personna-chat {
        display: none;
    }
} */
/*====================================================
CONTACT INFORMATION MODULE (Catherine castonguay footer, in every page using shortcode)
[footerPersona]
====================================================*/
.apps4-contact-information {
  padding: 50px 0 40px;
  background: #025091 url("../img/bluebg.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  border-top: 8px solid #7FCB15; }
  .apps4-contact-information h3 {
    font-size: 26px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    line-height: 26px;
    text-align: center;
    margin: 0;
    color: #ffffff;
    padding: 0 10px 30px; }
  .apps4-contact-information .apps4-contacts {
    font-size: 22px;
    font-family: "MuseoSans-300", arial, sans-serif;
    text-transform: uppercase;
    display: inline-block;
    padding-left: 80px;
    position: relative;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
    padding: 0 0 15px;
    cursor: pointer; }
    .apps4-contact-information .apps4-contacts:hover {
      opacity: 0.8;
      text-decoration: none;
      color: #ffffff; }
  .apps4-contact-information span {
    display: block;
    font-family: "MuseoSans-700", arial, sans-serif; }

.apps4-live-support {
  position: relative;
  padding-left: 60px; }
  .apps4-live-support:after {
    content: " ";
    height: 62px;
    width: 1px;
    position: absolute;
    background: #3dabe8;
    top: 0;
    right: 0;
    display: none; }

a.apps4-contacts.contact-apps4-live:after {
  content: " ";
  background: transparent;
  position: absolute;
  width: 62px;
  height: 62px;
  top: 0;
  left: -75px; }

a.apps4-contacts.contact-apps4-live:after {
  background: transparent url("../img/contact_icon.png") -124px 0 no-repeat; }

.apps4-phone-number {
  position: relative;
  padding-left: 60px; }
  .apps4-phone-number:after {
    content: " ";
    height: 62px;
    width: 1px;
    position: absolute;
    background: #3dabe8;
    top: 0;
    right: 0;
    display: none; }

a.apps4-contacts.contact-apps4-sales:after {
  content: " ";
  background: transparent;
  position: absolute;
  width: 62px;
  height: 62px;
  top: 0;
  left: -75px; }

a.apps4-contacts.contact-apps4-sales:after {
  background: transparent url("../img/contact_icon.png") -62px 0 no-repeat; }

.apps4-contact-email {
  position: relative;
  padding-left: 60px; }
  .apps4-contact-email:after {
    content: " ";
    height: 62px;
    width: 1px;
    position: absolute;
    background: #3dabe8;
    top: 0;
    right: 0;
    display: none; }

a.apps4-contacts.contact-email-apps4:after {
  content: " ";
  background: transparent;
  position: absolute;
  width: 62px;
  height: 62px;
  top: 0;
  left: -75px; }

a.apps4-contacts.contact-email-apps4:after {
  background: transparent url("../img/contact_icon.png") -186px 0 no-repeat; }

.apps4-performance-cloud {
  position: relative;
  padding-left: 60px; }
  .apps4-performance-cloud:after {
    content: " ";
    height: 62px;
    width: 1px;
    position: absolute;
    background: #3dabe8;
    top: 0;
    right: 0;
    display: none; }

a.apps4-contacts.try-performance-cloud-now:after {
  content: " ";
  background: transparent;
  position: absolute;
  width: 62px;
  height: 62px;
  top: 0;
  left: -75px; }

a.apps4-contacts.try-performance-cloud-now:after {
  background: transparent url("../img/contact_icon.png") 0 0 no-repeat; }

.apps4-contact-information-person {
  padding: 20px 0px 45px;
  background: #025091 url("https://images.apps4.com/images/website_images/appsbrooke.jpg") no-repeat center;
  color: #ffffff;
  border-top: 5px solid #7FCB15;
  background-size: cover;
  position: relative; }
  .apps4-contact-information-person .c-25, .apps4-contact-information-person .c-35 {
    display: none; }
    @media screen and (min-width: 992px) {
      .apps4-contact-information-person .c-25, .apps4-contact-information-person .c-35 {
        display: block; } }
  .apps4-contact-information-person .c-40 {
    text-align: center !important;
    width: 100%; }
    @media screen and (min-width: 992px) {
      .apps4-contact-information-person .c-40 {
        text-align: left !important;
        width: 40%; } }
  .apps4-contact-information-person .apps4-personna {
    position: absolute;
    bottom: 0px;
    margin-left: -45px; }
  .apps4-contact-information-person .personna-role {
    font-family: "ProximaNova", arial, sans-serif;
    font-size: 16px;
    position: relative;
    white-space: nowrap; }
  .apps4-contact-information-person ul li {
    display: inline-block;
    padding: 0 55px 0 0; }
    .apps4-contact-information-person ul li a {
      text-indent: -3000px;
      cursor: pointer;
      width: 45px;
      height: 45px;
      position: absolute; }
      .apps4-contact-information-person ul li a.chat-now {
        background: url("https://images.apps4.com/images/svg-website/contact-phone.svg") no-repeat; }
      .apps4-contact-information-person ul li a.send-email {
        background: url("https://images.apps4.com/images/svg-website/contact-email.svg") no-repeat; }
      .apps4-contact-information-person ul li a.call-apps4-now {
        background: url("https://images.apps4.com/images/svg-website/contact-phone-2.svg") no-repeat; }
  .apps4-contact-information-person h3 {
    font-size: 30px;
    font-family: "ProximaNova-Bold", arial, sans-serif;
    line-height: normal;
    margin: 0;
    color: #ffffff;
    letter-spacing: 1px; }
  .apps4-contact-information-person .phone-footer {
    font-family: "ProximaNova-Bold";
    font-size: 36px;
    margin: 10px 0px 0px 0px; }
  .apps4-contact-information-person .apps4-contacts {
    font-size: 22px;
    font-family: "MuseoSans-300", arial, sans-serif;
    text-transform: uppercase;
    display: inline-block;
    padding-left: 80px;
    position: relative;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
    padding: 0 0 15px;
    cursor: pointer; }
    .apps4-contact-information-person .apps4-contacts:hover {
      opacity: 0.8;
      text-decoration: none;
      color: #ffffff; }
  .apps4-contact-information-person span {
    display: block;
    font-family: "ProximaNova-Bold", arial, sans-serif;
    font-size: 20px;
    letter-spacing: -.5px; }

/*===================================================
COST CALCULATOR
====================================================*/
.cloud-pricing-row {
  display: table;
  width: 100%;
  text-align: left;
  border-top: 1px solid #dae4ef;
  border-bottom: 1px solid #dae4ef;
  background: #ffffff; }
  .cloud-pricing-row h5 {
    font-family: MuseoSans-700, arial, sans-serif;
    font-size: 23px;
    color: #025091; }
    .cloud-pricing-row h5 span {
      display: block;
      font-family: "MuseoSans-300";
      font-size: 16px;
      margin: 10px 0px 0px 0px;
      line-height: 22px; }
  .cloud-pricing-row.no-borders {
    border: none;
    background: transparent; }
    .cloud-pricing-row.no-borders.last {
      border-bottom: 1px solid #dae4ef; }

.pricing-row-content.primary, .pricing-row-content.second {
  display: table-cell;
  padding: 20px;
  vertical-align: middle; }

.pricing-row-content.primary {
  width: 30%; }

.pricing-row-content.second {
  width: 70%; }

.image-tabs, .label-tabs {
  float: left; }

.show-this {
  display: none; }

.cloud-ui-demo .centered-img {
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -400px; }

.show-building-tabs {
  display: none; }

.calculator-container {
  background: #dae4ef;
  font-weight: normal; }

#cloud-calculator .c-60 {
  background: #ffffff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

#cloud-calculator .c-40 {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background: #ffffff;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #d4d4d4), color-stop(6%, #ffffff));
  background: linear-gradient(to right, #d4d4d4 0, #ffffff 6%); }

#cloud-calculator .c-60, #cloud-calculator .c-40 {
  padding: 30px;
  min-height: 1800px; }

#cloud-calculator ul.tabs {
  margin: 0px;
  padding: 0px;
  list-style: none; }
  #cloud-calculator ul.tabs li {
    float: left;
    display: block;
    cursor: pointer;
    background: #dae4ef;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #dae4ef), color-stop(4%, #e4ecf4));
    background: linear-gradient(to right, #dae4ef 0, #e4ecf4 4%);
    font-family: MuseoSans-700, arial, sans-serif;
    font-size: 26px;
    line-height: 26px;
    position: relative; }
    #cloud-calculator ul.tabs li.current {
      background: #ffffff;
      -webkit-filter: none;
              filter: none;
      border-right: none; }
      #cloud-calculator ul.tabs li.current a {
        color: #025091; }

#cloud-calculator .tab-content {
  display: none;
  background-color: #ffffff;
  padding: .1px; }
  #cloud-calculator .tab-content.current {
    display: inherit; }

#cloud-calculator .tab-by-resource, #cloud-calculator .tab-by-servers {
  /*&:after{
            content: "";
            position: absolute;
            top: 30px;
            left: 30px;
            width: 26px;
            height: 25px;  
            background-image: url('http://www.apps4.com/files/themes/apps4/img/calc_icons.png');   
            background-repeat: no-repeat;     
        }*/ }

#cloud-calculator .tab-by-resource:after {
  background-position: -96px -4px; }

#cloud-calculator .tab-by-servers:after {
  background-position: -52px -4px; }

#cloud-calculator h5 {
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 32px;
  font-weight: normal;
  color: #025091;
  margin: 0; }
  #cloud-calculator h5.right-col-title.resources {
    padding: 3px 0px 40px 45px; }

#cloud-calculator .billing-type {
  font-family: "MuseoSans-700", arial, sans-serif;
  font-size: 13px;
  line-height: 13px;
  text-transform: uppercase;
  padding-top: 16px; }

#cloud-calculator ul.billing-btn-type {
  list-style: none;
  padding: 0;
  float: right; }
  #cloud-calculator ul.billing-btn-type li {
    float: left;
    margin-right: 20px;
    border: 1px solid transparent;
    background: #025091;
    color: #ffffff;
    font-family: MuseoSans-700, arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 18px;
    padding: 10px 40px 10px 20px;
    position: relative;
    cursor: pointer; }
    #cloud-calculator ul.billing-btn-type li:after {
      content: " ";
      border-radius: 50%;
      width: 24px;
      height: 24px;
      background: #ffffff;
      position: absolute;
      top: 50%;
      margin-top: -12px;
      right: 4px; }
    #cloud-calculator ul.billing-btn-type li.active {
      background: #7FCB15; }
      #cloud-calculator ul.billing-btn-type li.active:after {
        background: url("https://images.apps4.com/images/calc_checkbox.png") 0 4px no-repeat #ffffff; }

#cloud-calculator .small-title {
  margin: .25em 0 .5em;
  font-weight: 400;
  font-family: MuseoSans-500, Arial, Helvetica, sans-serif;
  line-height: 1.2em;
  float: left;
  margin-right: 10px;
  font-size: 18px; }

#cloud-calculator .billing-col p, #cloud-calculator .billing-col .cat-title {
  font-size: 14px;
  letter-spacing: -.7px;
  font-weight: 700;
  color: #333333;
  font-family: ProximaNova, arial, sans-serif; }

#cloud-calculator .billing-col p + p {
  font-weight: normal; }

#cloud-calculator .billing-col h5 {
  padding: 20px 0px 40px;
  position: relative;
  /*&:before {
                content: " ";
                width: 35px;
                height: 35px;
                background: url(http://www.apps4.com/files/themes/apps4/img/calc_icons.png) no-repeat;
                position: absolute;
                top: 0;
                left: 0;
            }*/ }

#cloud-calculator .cloud-item-slider label {
  font-family: 'MuseoSans-300', arial, sans-serif;
  color: #025091;
  font-size: 22px;
  line-height: 26px;
  font-weight: normal; }

#cloud-calculator .cloud-item-slider input[type=number] {
  border: 0px;
  float: left;
  color: #ffffff;
  background: transparent;
  text-align: left; }

#cloud-calculator .cloud-item-slider .c-75 {
  padding-right: 35px; }

#cloud-calculator .cloud-item-slider .c-25 {
  background-color: #d4d4d4;
  text-align: center;
  color: #ffffff;
  font-family: MuseoSans-700, arial, sans-serif;
  font-size: 14.5px;
  position: relative;
  top: -12px;
  text-align: right; }
  #cloud-calculator .cloud-item-slider .c-25:before {
    content: " ";
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #d4d4d4;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: -6px; }
  #cloud-calculator .cloud-item-slider .c-25.active {
    background-color: #025091; }
    #cloud-calculator .cloud-item-slider .c-25.active:before {
      border-right: 6px solid #025091; }

#cloud-calculator .cloud-item-slider .unit {
  color: #ffffff;
  font-family: MuseoSans-300, arial, sans-serif;
  margin: 0px;
  position: static; }

#cloud-calculator .cloud-item-slider:after, #cloud-calculator .cloud-item-spec:after {
  content: "";
  display: table;
  clear: both; }

#cloud-calculator .total-calculator {
  font-family: MuseoSans-300, arial, sans-serif;
  font-size: 26px;
  font-weight: normal;
  color: #025091;
  margin: 0;
  padding: 0 0 10px; }
  #cloud-calculator .total-calculator span {
    float: right; }

#cloud-calculator .cost-calculator-contact li {
  list-style: none;
  display: inline;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px dotted #d4d4d4; }
  #cloud-calculator .cost-calculator-contact li a {
    padding-left: 24px;
    font-family: MuseoSans-700, arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 20px;
    display: inline-block;
    background-position: 0 1px;
    background-repeat: no-repeat;
    padding-bottom: 20px; }

#cloud-calculator p.item_amount {
  font-weight: normal; }

.billing-col .cost-calculator-contact.show-this h5:before {
  content: none; }

.slider-range {
  margin: 0px 0px 8px 0px; }

.slider-range ~ p {
  font-family: 'MuseoSans-500', arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #025091;
  font-weight: bold; }
  .slider-range ~ p span {
    font-family: 'MuseoSans-500', arial, sans-serif;
    font-weight: normal; }

input[type=range] {
  display: block;
  width: 100%;
  cursor: pointer; }

.cloud-item-spec .c-50 {
  padding-bottom: 0px; }

.pricing-details {
  font-family: 'luna_barregular';
  font-size: 28px;
  color: #025091;
  position: relative;
  top: 20px;
  left: 0px;
  letter-spacing: .5px; }
  .pricing-details:hover {
    color: #3dabe8; }

#cloud-calculator .cloud-calculator-phone {
  background-image: url(https://images.apps4.com/images/phone_icon.png);
  color: #e30613; }

#cloud-calculator .cost-calculator-contact .open_sales_chat {
  background-image: url(https://images.apps4.com/images/chat_icon.png);
  color: #7FCB15; }

#cloud-calculator .cost-calculator-contact .contact-apps4-infomation {
  background-image: url(https://images.apps4.com/images/contact_icon.png);
  color: #025091; }

#cloud-calculator .cost-calculator-contact h5 {
  padding-bottom: 0px; }

ul.added-servers li {
  padding: 10px 0;
  text-align: center;
  width: 120px;
  font-family: MuseoSans-300, arial, sans-serif;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 3px;
  display: inline-block;
  background: #d4d4d4;
  border-top: 4px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
  cursor: pointer; }
  ul.added-servers li.current {
    color: #025091;
    border-top: 4px solid #025091;
    border-right: 1px solid #3dabe8;
    border-left: 1px solid #3dabe8;
    background: #ffffff; }

.add-remove-server-btn {
  padding: 0 0 0 50px;
  position: relative;
  float: left;
  line-height: 30px;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: MuseoSans-300, arial, sans-serif;
  width: 225px;
  -webkit-transition: .4s all ease;
  transition: .4s all ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .add-remove-server-btn:before {
    content: " ";
    height: 30px;
    width: 30px;
    position: absolute;
    top: 0;
    left: 0; }
  .add-remove-server-btn:hover {
    padding: 0 0 0 54px; }
  .add-remove-server-btn.add-server:before, .add-remove-server-btn.remove-server:before {
    background-image: url("https://images.apps4.com/images/calc_less_more.png");
    background-repeat: no-repeat; }
  .add-remove-server-btn.add-server {
    color: #7FCB15; }
  .add-remove-server-btn.remove-server {
    color: #ff001e; }
    .add-remove-server-btn.remove-server:before {
      background-position: -60px 0; }

.btn-add-remove {
  padding: 30px 0px; }
  .btn-add-remove:after {
    content: "";
    display: table;
    clear: both; }

/*COST CALCULATOR MEDIA QUERIES*/
@media screen and (max-width: 945px) {
  #cloud-calculator .c-60, #cloud-calculator .c-40 {
    width: 50%; }
  #cloud-calculator ul.tabs {
    text-align: center; }
    #cloud-calculator ul.tabs li {
      width: 100%; }
  .cost-calculator-contact.contact--top {
    display: none; } }

@media screen and (max-width: 720px) {
  .cost-calculator-contact {
    text-align: center;
    margin-bottom: 15px; }
  #cloud-calculator .c-60, #cloud-calculator .c-40 {
    width: 100%;
    min-height: inherit !important; }
  #cloud-calculator ul.tabs {
    text-align: center; }
  #cloud-calculator ul.tabs li {
    width: 100%;
    background: #dae4ef;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #dae4ef), color-stop(40%, #e4ecf4));
    background: linear-gradient(to right, #dae4ef 0, #e4ecf4 40%); }
  .hide-this {
    display: none !important; }
  .show-this {
    display: block !important; } }

@media (max-width: 37.75em) {
  .borders-cloud .c-3 {
    border: none !important; } }

@media screen and (max-width: 26.25em) {
  #cloud-calculator .cloud-item-slider .c-25, #cloud-calculator .cloud-item-slider .c-75 {
    width: 100%; }
  #cloud-calculator .cloud-item-slider .c-25 {
    margin: 20px 0px 0px 0px; }
    #cloud-calculator .cloud-item-slider .c-25:before {
      top: 0%;
      margin-top: -9px;
      left: 20px;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
  #cloud-calculator .cloud-item-slider .c-75 {
    padding-right: 0px; } }

/*===================================================
DYNAMICS CALCULATOR
====================================================*/
.wrapper-calculator {
  margin: 20px auto 0;
  max-width: 1200px;
  border-radius: 2px;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.05);
  color: #023866;
  border: 1px solid #ffffff;
  text-align: left; }
  .wrapper-calculator .title {
    padding: 0;
    margin: 0;
    font-family: 'MuseoSans-300'; }
  .wrapper-calculator ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: 'ProximaNova'; }
  .wrapper-calculator li {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #35a4dd;
    position: relative;
    font-size: 18px; }
    .wrapper-calculator li:last-child {
      margin-bottom: 0; }
  .wrapper-calculator input[type=checkbox],
  .wrapper-calculator input[type=radio] {
    margin-right: 3.5px; }
  .wrapper-calculator b {
    color: #023866; }
  .wrapper-calculator .next-and-prev {
    padding-top: 10px;
    text-align: center; }

.question {
  padding: 40px;
  display: none;
  background: #ffffff;
  position: relative; }
  .question b {
    font-family: monospace; }
  .question.active {
    display: block; }
  .question .inline-list li {
    display: inline-block;
    margin-right: 20px; }
    .question .inline-list li:last-child {
      margin-right: 0; }
  .question h5 {
    text-decoration: none;
    color: #023866;
    font-size: 18px;
    position: relative;
    margin-bottom: 3px;
    font-family: 'ProximaNova-Bold'; }
    .question h5 span {
      font-size: 14px;
      color: #023866;
      display: block; }
  .question input[type="number"] {
    padding-left: 10px;
    height: 45px;
    width: 95%;
    font-size: 16px; }
    .question input[type="number"]::-webkit-input-placeholder {
      font-family: 'ProximaNova';
      color: #333333; }
    .question input[type="number"]:-ms-input-placeholder {
      font-family: 'ProximaNova';
      color: #333333; }
    .question input[type="number"]:-moz-placeholder {
      font-family: 'ProximaNova';
      color: #333333; }
    .question input[type="number"]::-moz-placeholder {
      font-family: 'ProximaNova';
      color: #333333; }
  .question label {
    font-size: 16px;
    margin-top: 3px;
    -webkit-transition: color .34s ease-out;
    transition: color .34s ease-out;
    color: #023866;
    font-weight: normal; }
    .question label:hover {
      cursor: pointer; }
  .question .add-space {
    width: 100%;
    clear: both;
    height: 30px; }
    .question .add-space hr {
      margin: 25px 0; }
  .question .inline-list.enter-users li {
    width: 100%; }
  .question div div {
    min-height: 85px; }
  .question button {
    background: #023866;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 0 0 #023866;
            box-shadow: 0 0 0 0 #023866;
    -webkit-transition: background .34s ease;
    transition: background .34s ease;
    border: 0;
    font-family: 'ProximaNova';
    font-size: 21px; }
    .question button:hover {
      background: #35a4dd; }

.cta-final {
  padding-top: 60px;
  text-align: center;
  padding-bottom: 20px; }
  .cta-final i {
    position: relative;
    left: 10px; }
  .cta-final a {
    background: #7FCB15;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 3px;
    -webkit-transition: background .34s ease;
    transition: background .34s ease;
    border: 0;
    font-size: 21px;
    font-family: 'MuseoSans-500';
    letter-spacing: -1px; }
    .cta-final a:hover {
      background: #023866; }
    .cta-final a:before {
      display: none; }
    .cta-final a:active, .cta-final a:focus, .cta-final a:hover {
      text-decoration: none; }

#results {
  display: none; }

#results,
#apps {
  padding: 0;
  font-size: 21px; }

#results span span,
#apps span span {
  color: #ffffff;
  font-size: 19px;
  font-family: 'MuseoSans-500';
  letter-spacing: -.5px; }

.enter-users div > div {
  float: left;
  width: 50%; }

#not-empty,
#empty-fields {
  background: #e30613;
  color: white;
  padding: 7px 20px;
  -webkit-transition: all 550ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 250ms;
  transition: all 550ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 250ms;
  z-index: 5;
  font-size: 16px;
  opacity: 1;
  letter-spacing: -.5px;
  text-align: center;
  position: absolute;
  display: block;
  width: 100%;
  font-family: 'ProximaNova'; }

#not-empty.not-active,
#empty-fields.not-active {
  top: 0;
  opacity: 0; }

#not-empty .fa,
#empty-fields .fa {
  font-size: 15px; }

#plan-upgrade {
  background: #7FCB15;
  color: white;
  padding: 7px 20px;
  -webkit-transition: all 550ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 250ms;
  transition: all 550ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 250ms;
  z-index: 1;
  font-size: 16px;
  opacity: 1;
  letter-spacing: -.5px;
  text-align: center;
  position: absolute;
  display: block;
  width: 100%;
  font-family: 'ProximaNova'; }

#plan-upgrade.not-active {
  top: 0;
  opacity: 0; }

#plan-upgrade .fa {
  font-size: 15px; }

.question.last .plans-result {
  display: none; }

.info-container {
  background: #023866;
  padding: 15px 20px 20px 45px;
  color: #ffffff;
  display: none;
  font-family: 'MuseoSans-300'; }
  .info-container b {
    color: #13b6e4;
    font-size: 19px; }

#results > span {
  font-size: 21px;
  font-family: 'MuseoSans-500'; }

@media (min-width: 768px) {
  .wrapper-calculator .next-and-prev {
    text-align: right;
    margin: 0; } }

@media (min-width: 660px) and (min-height: 699px) {
  .questions .question {
    padding: 40px; } }

@media (min-width: 768px) {
  .wrapper-calculator .title {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -.3px;
    margin-bottom: 0; }
  .wrapper-calculator p {
    font-size: 19px;
    margin-bottom: 30px;
    margin-top: 5px; } }

@media (min-width: 320px) and (max-width: 600px) {
  #not-empty,
  #plan-upgrade,
  #empty-fields {
    text-align: center;
    position: inherit;
    bottom: inherit;
    -webkit-transform: inherit;
            transform: inherit;
    display: block;
    width: 100%; }
  #not-empty.not-active,
  #plan-upgrade.not-active,
  #empty-fields.not-active {
    display: none; }
  .info-container {
    padding: 20px; }
  .info-container b {
    font-size: 18px; } }

@media (max-width: 568px) {
  header .inner-header h1 {
    font-size: 18px; }
  .wrapper-calculator ul li {
    margin-bottom: 16px;
    font-size: 16px; }
  .question button {
    padding: 5px 20px;
    font-size: 16px; }
  .wrapper-calculator .title {
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 10px; }
  .wrapper-calculator {
    margin: 50px auto 0; }
  .wrapper-calculator p {
    line-height: 18px; } }

.get-in-touch p {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-family: 'ProximaNova-Bold'; }

.get-in-touch a {
  color: #13b6e4; }
  .get-in-touch a:hover, .get-in-touch a:active, .get-in-touch a:focus {
    text-decoration: none; }

/*===================================================
EBOOK THREE COL
====================================================*/
.ress-box {
  position: relative;
  width: 180px;
  height: 233px;
  margin: 0 auto; }

.section-resources:hover .img-left,
.active-states .img-left {
  -webkit-transform: rotate(-20deg) translate(-40px, 0);
          transform: rotate(-20deg) translate(-40px, 0); }

.section-resources:hover .img-right,
.active-states .img-right {
  -webkit-transform: rotate(20deg) translate(40px, 0);
          transform: rotate(20deg) translate(40px, 0); }

.section-resources:hover .img-center,
.active-states .img-center {
  -webkit-transform: scale(1.1);
          transform: scale(1.1); }

.section-resources:hover .img-center .shadow-1 {
  -webkit-transition: all 90ms ease-in 90ms;
  transition: all 90ms ease-in 90ms;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }

.section-resources:hover .gif-preview {
  display: inline-block !important;
  -webkit-transition: all 90ms ease-in 90ms;
  transition: all 90ms ease-in 90ms; }

.ress-img {
  position: absolute;
  width: 140px;
  -webkit-transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1); }

.img-left,
.img-right {
  bottom: 50px; }

.img-left {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  left: 0;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left; }

.img-right {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  right: 0;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right; }

.img-center {
  top: -18px;
  left: 0;
  width: 180px;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center; }

.circle-frame {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  line-height: 150px;
  color: #e30613; }
  .circle-frame:before {
    content: " ";
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #e30613; }

p.count-box:after {
  content: "%";
  font-size: 21px; }

.rounded {
  border-radius: 50%; }

.green-top {
  border-top: 8px solid #7FCB15; }

.small-circle {
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: relative; }

.color-box {
  max-width: 89px;
  height: 89px;
  margin: 34px auto;
  position: relative; }
  .color-box:before {
    content: "" attr(ref) "";
    height: 34px;
    width: 89px;
    border: 1px solid;
    border-color: inherit;
    position: absolute;
    top: -34px;
    left: 0px; }

/* COVER EBOOK MODULE
   ==================================================== */
.message-marketo--ebook {
  display: none; }

.message-marketo,
.message-marketo-side-bar,
.message-marketo-infokit {
  display: none;
  font-family: "MuseoSans-500";
  font-weight: normal;
  color: #3dabe8;
  font-size: 15px;
  line-height: 22px;
  margin: 0;
  text-align: center; }
  .message-marketo span,
  .message-marketo-side-bar span,
  .message-marketo-infokit span {
    display: block;
    font-size: 18px;
    margin: 0 0 15px; }

.ebook--module form[id^="mktoForm_"], .accelerate-form form[id^="mktoForm_"] {
  width: 100% !important;
  overflow: auto;
  text-align: left;
  /*
        button.mktoButton {
            background: #e30613 !important;
            padding: 10px 23px !important;
            color: #fcfcfc !important;
            display: inline-block !important;
            border: none !important;
            font-size: 18px !important;
            transition: all 0.14s ease 0s;
            text-transform: none;
            font-family: 'ProximaNova', sans-serif;
        }

        button.mktoButton:hover {
            background: #c00d0d !important;
            color: #fcfcfc !important;
            text-decoration: none;
        }*/ }
  .ebook--module form[id^="mktoForm_"] .mktoAsterix, .accelerate-form form[id^="mktoForm_"] .mktoAsterix {
    color: #333333;
    float: left;
    padding-left: 0px;
    padding-right: 5px; }
  .ebook--module form[id^="mktoForm_"] label.mktoLabel.mktoHasWidth, .accelerate-form form[id^="mktoForm_"] label.mktoLabel.mktoHasWidth {
    color: #333333;
    padding-bottom: 0px;
    font-size: 16px;
    letter-spacing: -.5px;
    width: 100% !important;
    font-family: 'ProximaNova';
    font-weight: 500; }
  .ebook--module form[id^="mktoForm_"] .mktoFieldDescriptor.mktoFormCol, .accelerate-form form[id^="mktoForm_"] .mktoFieldDescriptor.mktoFormCol {
    width: 50%;
    margin-bottom: 0px !important; }
  .ebook--module form[id^="mktoForm_"] .mktoButtonWrap, .accelerate-form form[id^="mktoForm_"] .mktoButtonWrap {
    margin-left: 0px !important;
    width: 100% !important;
    float: left;
    margin: 0 0 30px 0; }

.ebook--module .mktoForm input:not([type='checkbox']),
.ebook--module .mktoForm select,
.ebook--module .mktoForm select.mktoField,
.ebook--module .mktoForm textarea.mktoField, .accelerate-form .mktoForm input:not([type='checkbox']),
.accelerate-form .mktoForm select,
.accelerate-form .mktoForm select.mktoField,
.accelerate-form .mktoForm textarea.mktoField {
  border: 1px solid #3dabe8 !important;
  font-family: 'ProximaNova';
  padding-left: 12px;
  font-size: 15px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .ebook--module .mktoForm input:not([type='checkbox']):not([type='checkbox']),
  .ebook--module .mktoForm select:not([type='checkbox']),
  .ebook--module .mktoForm select.mktoField:not([type='checkbox']),
  .ebook--module .mktoForm textarea.mktoField:not([type='checkbox']), .accelerate-form .mktoForm input:not([type='checkbox']):not([type='checkbox']),
  .accelerate-form .mktoForm select:not([type='checkbox']),
  .accelerate-form .mktoForm select.mktoField:not([type='checkbox']),
  .accelerate-form .mktoForm textarea.mktoField:not([type='checkbox']) {
    min-height: 40px;
    height: 40px; }

.ebook--module .mktoForm .mktoFieldWrap, .accelerate-form .mktoForm .mktoFieldWrap {
  width: 100%;
  padding-right: 20px; }

.ebook--module .mktoForm .mktoOffset, .accelerate-form .mktoForm .mktoOffset {
  float: left;
  height: .8em !important; }

.ebook--module .mktoForm .mktoGutter, .accelerate-form .mktoForm .mktoGutter {
  display: none; }

.ebook--module .mktoButtonRow, .accelerate-form .mktoButtonRow {
  margin-top: 0 !important; }

.ebook--module.accelerate-form, .accelerate-form.accelerate-form {
  max-width: 600px;
  margin: 0 auto; }
  .ebook--module.accelerate-form .mktoFieldDescriptor.mktoFormCol, .accelerate-form.accelerate-form .mktoFieldDescriptor.mktoFormCol {
    width: 100% !important; }
  .ebook--module.accelerate-form .mktoForm input, .ebook--module.accelerate-form .mktoForm select, .accelerate-form.accelerate-form .mktoForm input, .accelerate-form.accelerate-form .mktoForm select {
    width: 100% !important; }

@media (max-width: 50em) {
  .ebook--module form[id^="mktoForm_"] {
    text-align: center; }
  .ebook--module form[id^="mktoForm_"] .mktoFieldDescriptor.mktoFormCol,
  .ebook--module form[id^="mktoForm_"] .mktoFieldWrap.mktoRequiredField {
    float: none;
    width: 100%; }
  .ebook--module .mktoForm .mktoFieldWrap {
    padding-right: 0 !important; } }

/*===================================================
FEATURED LIST (Ul > li with check mark (.available) - Can be inlined (.inlined))
====================================================*/
.featured-list li {
  list-style: none;
  text-align: left;
  padding-left: 30px;
  position: relative;
  line-height: 26px;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: inherit; }
  .featured-list li:before {
    position: absolute;
    left: 0;
    content: ' ';
    background-repeat: no-repeat;
    top: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  .featured-list li.inlined {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px; }
  .featured-list li.available:before {
    background-image: url(https://images.apps4.com/images/svg-website/list-available-feature.svg);
    width: 22px;
    height: 22px; }
  .featured-list li.not-available:before {
    background-image: url(https://images.apps4.com/images/svg-website/list-not-available-feature.svg);
    width: 20px;
    height: 20px; }

/*===================================================
HERO - FEATURED PRODUCT
===================================================*/
.featured-product, .apps4-performance-cloud-op, .how-we-built-performance-cloud {
  background: #025091 url("https://images.apps4.com/images/homepage/partner-Homepage-background.jpg") top center no-repeat;
  color: #ffffff;
  background-size: cover;
  -webkit-transition: margin-top 500ms ease;
  transition: margin-top 500ms ease; }
  .featured-product blockquote, .apps4-performance-cloud-op blockquote, .how-we-built-performance-cloud blockquote {
    font-family: 'MuseoSans-300';
    font-size: 32px;
    border-left: 0; }
    @media (min-width: 992px) {
      .featured-product blockquote, .apps4-performance-cloud-op blockquote, .how-we-built-performance-cloud blockquote {
        font-size: 48px;
        line-height: 52px; } }
  .featured-product cite, .apps4-performance-cloud-op cite, .how-we-built-performance-cloud cite {
    font-style: normal; }
  .featured-product .media-cta, .apps4-performance-cloud-op .media-cta, .how-we-built-performance-cloud .media-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (min-width: 768px) {
      .featured-product .media-cta, .apps4-performance-cloud-op .media-cta, .how-we-built-performance-cloud .media-cta {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
    .featured-product .media-cta li, .apps4-performance-cloud-op .media-cta li, .how-we-built-performance-cloud .media-cta li {
      margin-bottom: 25px; }
      @media (min-width: 768px) {
        .featured-product .media-cta li, .apps4-performance-cloud-op .media-cta li, .how-we-built-performance-cloud .media-cta li {
          margin-bottom: 0; } }
    .featured-product .media-cta a:first-of-type, .apps4-performance-cloud-op .media-cta a:first-of-type, .how-we-built-performance-cloud .media-cta a:first-of-type {
      margin-right: 30px;
      margin-left: 5px; }
    .featured-product .media-cta img, .apps4-performance-cloud-op .media-cta img, .how-we-built-performance-cloud .media-cta img {
      vertical-align: middle; }
  .featured-product .icon, .apps4-performance-cloud-op .icon, .how-we-built-performance-cloud .icon {
    vertical-align: top;
    margin-right: 10px; }
  .featured-product.o365-featured-product:after, .o365-featured-product.apps4-performance-cloud-op:after, .o365-featured-product.how-we-built-performance-cloud:after {
    z-index: -1;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    content: '';
    background: rgba(0, 0, 0, 0.5); }
  .featured-product .section-title span, .apps4-performance-cloud-op .section-title span, .how-we-built-performance-cloud .section-title span {
    color: #ffffff; }
  .featured-product .text-right.bottom-sentence, .apps4-performance-cloud-op .text-right.bottom-sentence, .how-we-built-performance-cloud .text-right.bottom-sentence {
    left: 0;
    text-align: right; }
  .featured-product .text-left.bottom-sentence, .apps4-performance-cloud-op .text-left.bottom-sentence, .how-we-built-performance-cloud .text-left.bottom-sentence {
    right: 0;
    text-align: left; }
  .featured-product .featured-container.no-section-icon, .apps4-performance-cloud-op .featured-container.no-section-icon, .how-we-built-performance-cloud .featured-container.no-section-icon {
    padding-bottom: 45px; }
  .featured-product .product-quote, .apps4-performance-cloud-op .product-quote, .how-we-built-performance-cloud .product-quote {
    font-family: "MuseoSans-300", arial, sans-serif;
    text-align: center;
    font-size: 16px;
    margin-top: 30px; }
    @media screen and (min-width: 992px) {
      .featured-product .product-quote, .apps4-performance-cloud-op .product-quote, .how-we-built-performance-cloud .product-quote {
        font-size: 23px;
        line-height: 36px; } }
    .featured-product .product-quote span, .apps4-performance-cloud-op .product-quote span, .how-we-built-performance-cloud .product-quote span {
      font-family: "MuseoSans-500", arial, sans-serif;
      text-transform: uppercase; }
    .featured-product .product-quote .medium-title, .apps4-performance-cloud-op .product-quote .medium-title, .how-we-built-performance-cloud .product-quote .medium-title {
      font-size: 24px; }
  .featured-product-xl {
    position: relative;
    padding: 30px 0 40px;
    min-height: 280px;
    overflow: hidden; }
    @media (min-width: 700px) {
      .featured-product-xl {
        min-height: 380px; } }
    @media (min-width: 768px) {
      .featured-product-xl {
        min-height: 500px; } }
    @media (min-width: 992px) {
      .featured-product-xl {
        min-height: 520px;
        padding: 40px 0 40px; } }
    @media (min-width: 1900px) {
      .featured-product-xl {
        padding: 55px 0 40px; } }
    .featured-product-xl .full-image {
      width: 100%;
      display: block;
      bottom: 0;
      position: absolute;
      -webkit-transition: all .12s ease;
      transition: all .12s ease; }
      @media (min-width: 517px) {
        .featured-product-xl .full-image {
          -webkit-transform: translateY(23%);
                  transform: translateY(23%); } }
      @media (min-width: 645px) {
        .featured-product-xl .full-image {
          -webkit-transform: translateY(33%);
                  transform: translateY(33%); } }
      @media (min-width: 700px) {
        .featured-product-xl .full-image {
          -webkit-transform: translateY(0);
                  transform: translateY(0); } }
      @media (min-width: 1200px) {
        .featured-product-xl .full-image {
          -webkit-transform: translateY(15%);
                  transform: translateY(15%); } }
      @media (min-width: 1400px) {
        .featured-product-xl .full-image {
          -webkit-transform: translateY(25%);
                  transform: translateY(25%); } }
      @media (min-width: 1600px) {
        .featured-product-xl .full-image {
          -webkit-transform: translateY(35%);
                  transform: translateY(35%); } }
      @media (min-width: 1900px) {
        .featured-product-xl .full-image {
          -webkit-transform: translateY(45%);
                  transform: translateY(45%); } }
      @media (min-width: 2200px) {
        .featured-product-xl .full-image {
          -webkit-transform: translateY(51%);
                  transform: translateY(51%); } }
      @media (min-width: 2700px) {
        .featured-product-xl .full-image {
          -webkit-transform: translateY(62%);
                  transform: translateY(62%); } }
    .featured-product-xl h1 {
      font-size: 1.5rem; }
      @media (min-width: 576px) {
        .featured-product-xl h1 {
          font-size: 2rem; } }
      @media (min-width: 768px) {
        .featured-product-xl h1 {
          font-size: 2.5rem; } }
    .featured-product-xl h2 {
      font-family: 'ProximaNova-ExtraBold';
      font-size: 3.3rem;
      letter-spacing: -1px;
      line-height: 60px;
      position: relative;
      left: -3px; }
      @media (min-width: 576px) {
        .featured-product-xl h2 {
          font-size: 6rem;
          line-height: 100px;
          left: -5px; } }
      @media (min-width: 768px) {
        .featured-product-xl h2 {
          font-size: 8rem;
          letter-spacing: -6.3px;
          left: -10px; } }
      @media (min-width: 992px) {
        .featured-product-xl h2 {
          font-size: 10rem;
          line-height: 160px; } }
      @media (min-width: 1200px) {
        .featured-product-xl h2 {
          font-size: 12rem; } }

.featured-container {
  padding-bottom: 115px; }
  .featured-container h2 {
    font-size: 44px;
    color: #fff;
    text-shadow: none;
    font-family: "MuseoSans-300", arial, sans-serif;
    text-align: center;
    margin: 0;
    letter-spacing: -2px;
    line-height: normal; }
    .featured-container h2.italic {
      font-family: 'MuseoSans-500', arial, sans-serif; }
      .featured-container h1 span.italic {
        font-style: italic; }
    .featured-container h2 .sub-title {
      font-size: 26px; }
    @media screen and (min-width: 768px) {
      .featured-container h2 {
        font-size: 48px; margin-top:1%} }
  .featured-container p.top-sentence {
    font-size: 18px;
    color: #ffffff;
    text-shadow: none;
    font-family: "MuseoSans-700", arial, sans-serif;
    text-align: center;
    padding: 20px 0 30px;
    margin: 0; }
  .featured-container .big-title {
    font-size: 68px;
    font-family: "MuseoSans-100";
    margin: 0px;
    letter-spacing: -3px; }
  .featured-container .orange-btn {
    font-size: 24px;
    letter-spacing: -.5px; }
  .featured-container .centered-img {
    padding: 50px 20px 0; }

.section-icon {
  position: absolute;
  bottom: -102px;
  left: 50%;
  margin-left: -102px;
  z-index: 9; }

.top-cta {
  text-align: center; }
  .top-cta .big-blue-btn {
    display: inline-block;
    position: relative; }
    @media screen and (min-width: 992px) {
      .top-cta .big-blue-btn {
        display: none; } }
    .top-cta .big-blue-btn.partner {
      padding: 20px 30px 20px 85px; }
      .top-cta .big-blue-btn.partner:before {
        content: " ";
        background: #7FCB15 url("../img/suitecase.png") center center no-repeat;
        width: 60px;
        height: 62px;
        position: absolute;
        left: 0;
        top: 0;
        -webkit-transition: all 1s ease-out;
        transition: all 1s ease-out; }
    .top-cta .big-blue-btn:hover {
      background: #7FCB15;
      cursor: pointer; }
      .top-cta .big-blue-btn:hover:before {
        background-color: #4e8f0d; }
  .top-cta .infokit-top-cta {
    background: #e30613;
    color: #ffffff;
    display: inline-block;
    border: none;
    padding: 20px 15px 20px 70px;
    font-family: "MuseoSans-500", arial, sans-serif;
    font-size: 16px;
    margin: 0 20px;
    position: relative; }
    .top-cta .infokit-top-cta:before {
      content: " ";
      background: #c00d0d url("../img/icon-infokit.png") center center no-repeat;
      width: 60px;
      height: 62px;
      position: absolute;
      left: 0;
      top: 0;
      -webkit-transition: all 1s ease-out;
      transition: all 1s ease-out; }
    .top-cta .infokit-top-cta:hover {
      background: #c00d0d;
      cursor: pointer; }
      .top-cta .infokit-top-cta:hover:before {
        background-color: #e30613; }

.bottom-sentence {
  margin: 0;
  color: #ffffff;
  font-family: "MuseoSans-700", arial, sans-serif;
  font-size: 17px;
  width: 300px;
  position: absolute;
  bottom: 38px;
  line-height: 28px; }

.fieldset-header {
  border: 3px solid #ffffff;
  padding: 30px;
  padding-bottom: 25px;
  padding-top: 0px;
  margin: 0 auto;
  max-width: 100%; }

.legend-header {
  border: 0px none;
  margin: 0px auto;
  color: #3dabe8;
  font-family: "MuseoSans-300";
  font-size: 36px;
  letter-spacing: -2px;
  text-align: center;
  width: auto;
  margin-left: 16%;
  padding: 0px 20px; }

@-moz-document url-prefix() {
  .legend-header {
    margin-left: 14%; } }

.featured-phone-number {
  font-size: 36px;
  font-family: "MuseoSans-700", arial, sans-serif;
  margin: 15px 0 20px;
  text-align: center; }
  .featured-phone-number span {
    display: block;
    font-size: 18px; }

@media screen and (max-width: 37em) {
  div.featured-product div.featured-container .double-title, div.apps4-performance-cloud-op div.featured-container .double-title, div.how-we-built-performance-cloud div.featured-container .double-title {
    font-size: 34px !important;
    padding: 0px 15px; } }

.featured-container .centered-img {
  padding: 40px 0 10px; }

/*===================================================
1. CLOUD TABLE
===================================================*/
.cloud-table {
  padding-top: 60px;
  margin: 0 auto;
  width: 100%;
  display: table;
  max-width: 600px;
  font-family: 'ProximaNova'; }
  @media screen and (min-width: 992px) {
    .cloud-table {
      max-width: 900px; } }
  @media screen and (min-width: 1200px) {
    .cloud-table {
      max-width: 1200px; } }
  .cloud-table.three-cols .table-row .table-cell {
    width: 33.3333333%; }
  .cloud-table.blue-header > .table-row:first-of-type > .table-cell {
    background: #025091;
    color: white;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .cloud-table:not(.blue-header):not(.title-row):nth-child(even) .table-cell:not(.empty):not(.double-cell) {
    background: #f3f3f3; }
  .cloud-table .table-row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .cloud-table .table-row .table-cell {
      width: 50%;
      padding: 10px;
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-right: 1px solid #d4d4d4;
      position: relative;
      background: #ffffff; }
      @media screen and (min-width: 992px) {
        .cloud-table .table-row .table-cell {
          padding: 10px 20px; } }
      @media screen and (min-width: 1200) {
        .cloud-table .table-row .table-cell {
          padding: 20px 40px; } }
      @media screen and (max-width: 768px) {
        .cloud-table .table-row .table-cell:nth-child(2) {
          border-left: 1px solid #d4d4d4; } }
      .cloud-table .table-row .table-cell:first-child {
        text-align: left;
        margin: 0; }
      .cloud-table .table-row .table-cell.row-cell {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      .cloud-table .table-row .table-cell.note-cell {
        border: 0; }
      @media screen and (max-width: 768px) {
        .cloud-table .table-row .table-cell.row-cell-mobile {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; } }
      .cloud-table .table-row .table-cell:not(.empty) {
        border-bottom: 1px solid #d4d4d4; }
      .cloud-table .table-row .table-cell:first-child {
        border-left: 1px solid #d4d4d4; }
      .cloud-table .table-row .table-cell.empty {
        border-left: 0;
        border-top: 0; }
      .cloud-table .table-row .table-cell .text {
        margin: 0 auto;
        width: 100%;
        font-size: inherit; }
        .cloud-table .table-row .table-cell .text.note {
          font-size: 14px; }
      .cloud-table .table-row .table-cell .pricing {
        font-size: 16px;
        display: block;
        width: 100%; }
        @media screen and (min-width: 768px) {
          .cloud-table .table-row .table-cell .pricing {
            font-size: 30px; } }
      .cloud-table .table-row .table-cell .sub-text {
        width: 100%; }
        @media screen and (min-width: 768px) {
          .cloud-table .table-row .table-cell .sub-text {
            padding-left: 20px; } }
      .cloud-table .table-row .table-cell .dash {
        background: #d4d4d4;
        width: 25px;
        height: 2px;
        display: block;
        margin: 18px auto; }
      .cloud-table .table-row .table-cell a.btn {
        color: #ffffff;
        background: #7FCB15;
        padding: 10px;
        text-align: center;
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 120px; }
        .cloud-table .table-row .table-cell a.btn.download-btn, .cloud-table .table-row .table-cell a.btn.contact-btn {
          max-width: 240px; }
          .cloud-table .table-row .table-cell a.btn.download-btn.download-btn, .cloud-table .table-row .table-cell a.btn.contact-btn.download-btn {
            background: #35a4dd; }
      .cloud-table .table-row .table-cell div.show-more-btn {
        background: #35a4dd;
        color: #ffffff;
        padding: 10px;
        text-align: center;
        margin: 0 auto;
        max-width: 150px; }
        .cloud-table .table-row .table-cell div.show-more-btn:hover {
          cursor: pointer; }
        .cloud-table .table-row .table-cell div.show-more-btn.desktop-btn {
          margin: 0;
          -webkit-transform: rotate(-90deg);
                  transform: rotate(-90deg);
          -webkit-transform-origin: 0 0;
                  transform-origin: 0 0;
          position: absolute;
          top: 120px;
          left: 0;
          height: 49px;
          width: 120px;
          margin-left: -50px; }
      .cloud-table .table-row .table-cell.full-cell {
        width: 100% !important; }
        .cloud-table .table-row .table-cell.full-cell .cta-combo {
          width: 100%; }
    .cloud-table .table-row.note-row .table-cell {
      border-bottom: 0;
      border-right: 0; }
    .cloud-table .table-row.hidden-row {
      display: none; }
      .cloud-table .table-row.hidden-row.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
    .cloud-table .table-row.border-top:first-child .table-cell {
      border-top: 1px solid #d4d4d4; }
  .cloud-table .title-row .title {
    background: #025091;
    color: #ffffff; }
  .cloud-table.pricing-table .table-row .table-cell {
    width: 33%; }
    .cloud-table.pricing-table .table-row .table-cell.double-cell {
      width: 66%; }
    @media screen and (max-width: 768px) {
      .cloud-table.pricing-table .table-row .table-cell {
        width: 50%; }
        .cloud-table.pricing-table .table-row .table-cell.double-cell {
          width: 100%; } }
  .cloud-table.phones-table .table-row .table-cell {
    width: 50%; }
    .cloud-table.phones-table .table-row .table-cell.double-cell {
      width: 100%; }
    .cloud-table.phones-table .table-row .table-cell:first-child {
      text-align: center; }
  .cloud-table.phones-table .flexslider {
    width: 100%;
    display: block !important;
    background: none; }
    .cloud-table.phones-table .flexslider .flex-control-nav a.flex-active,
    .cloud-table.phones-table .flexslider .flex-control-nav a:hover {
      background-color: #025091; }
    .cloud-table.phones-table .flexslider ul.slides li div.content div.img img {
      margin: 0 auto;
      height: 100%;
      max-height: 130px;
      width: auto;
      padding-bottom: 20px; }
    .cloud-table.phones-table .flexslider ul.slides li div.content span.title {
      font-weight: bold;
      color: #025091;
      bottom: 0;
      text-align: center;
      display: block;
      margin: 0 auto;
      padding-top: 10px; }

.table-holder {
  padding: 15px 20px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 5px #d4d4d4;
          box-shadow: 0 0 5px #d4d4d4; }
  @media screen and (min-width: 768px) {
    .table-holder {
      padding: 30px 60px; } }

/*===================================================
2. FLEX TABLE
===================================================*/
.flex-table {
  font-family: 'ProximaNova';
  font-size: 14px; }
  @media screen and (min-width: 768px) {
    .flex-table {
      font-size: 17px; } }
  .flex-table .table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #eeeeee; }
    .flex-table .table-row:last-child {
      border-bottom: none; }
    .flex-table .table-row .table-cell {
      padding: 5px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .flex-table .table-row .table-cell {
          padding: 15px; } }
      .flex-table .table-row .table-cell:first-child {
        display: none;
        color: #35a4dd; }
        @media screen and (min-width: 768px) {
          .flex-table .table-row .table-cell:first-child {
            display: block;
            text-align: left; } }
      .flex-table .table-row .table-cell.empty {
        display: none; }
        @media screen and (min-width: 768px) {
          .flex-table .table-row .table-cell.empty {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; } }
      .flex-table .table-row .table-cell:not(:first-child) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .flex-table .table-row .table-cell:not(:first-child) * {
          max-width: 100%; }
      .flex-table .table-row .table-cell img {
        margin: 0 auto;
        display: block; }
      .flex-table .table-row .table-cell .flex-table-text,
      .flex-table .table-row .table-cell p {
        display: block;
        margin: 0 auto; }
      .flex-table .table-row .table-cell .mobile-cell-title {
        color: #35a4dd;
        display: block;
        margin-top: 10px; }
        @media screen and (min-width: 768px) {
          .flex-table .table-row .table-cell .mobile-cell-title {
            display: none; } }
      .flex-table .table-row .table-cell ._price {
        font-family: 'ProximaNova-Light';
        color: #333333;
        font-size: 18px; }
        @media screen and (min-width: 768px) {
          .flex-table .table-row .table-cell ._price {
            font-size: 50px; } }
    .flex-table .table-row.header-row {
      color: #025091;
      font-size: 21px; }
      .flex-table .table-row.header-row .table-cell:not(.empty) {
        text-align: center;
        display: block; }
  .flex-table.threecol .table-cell {
    width: 50%; }
    @media screen and (min-width: 768px) {
      .flex-table.threecol .table-cell {
        width: 33.333333%; } }
    @media screen and (min-width: 768px) {
      .flex-table.threecol .table-cell:first-child {
        width: 33.333333%; } }
    .flex-table.threecol .table-cell.double-cell {
      width: 100%; }
      @media screen and (min-width: 768px) {
        .flex-table.threecol .table-cell.double-cell {
          width: 66.666666%; } }
  .flex-table.fourcol .table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .flex-table.fourcol .table-row .table-cell {
      width: 33.333333%; }
      @media screen and (min-width: 768px) {
        .flex-table.fourcol .table-row .table-cell {
          width: 25%; } }
      @media screen and (min-width: 768px) {
        .flex-table.fourcol .table-row .table-cell:first-child {
          width: 25%; } }
      .flex-table.fourcol .table-row .table-cell.double-cell {
        width: 66.666666%; }
        @media screen and (min-width: 768px) {
          .flex-table.fourcol .table-row .table-cell.double-cell {
            width: 100%; } }

.hide-overflow-x {
  overflow-x: hidden; }

.off-set-image {
  position: absolute;
  right: -45%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
  @media (min-width: 1200px) {
    .off-set-image {
      right: -25%; } }
  @media (min-width: 1400px) {
    .off-set-image {
      right: -10%; } }
  @media (min-width: 1600px) {
    .off-set-image {
      right: -5%; } }

/*===================================================
FLIP CARD
====================================================*/
/* entire container, keeps perspective */
.flip-notice {
  position: absolute;
  left: -235px;
  top: 180px;
  /*z-index: 9;*/
  -webkit-transform: rotate(-16deg);
          transform: rotate(-16deg);
  text-rendering: optimizeLegibility;
  font-weight: normal;
  font-family: 'luna_barregular';
  font-size: 32px;
  color: #025091; }

.highlight {
  background: #e4ecf4;
  padding: 2px 5px; }

.card-title {
  font-family: "ProximaNova-Bold";
  font-size: 32px;
  color: #025091;
  padding: 15px 0px 10px 0px; }

.back .card-title {
  padding-bottom: 0px;
  margin-bottom: -3px; }

.flip-container {
  -webkit-perspective: 1000;
          perspective: 1000;
  -webkit-transform: perspective(1000px);
          transform: perspective(1000px);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.flip-container:hover .back,
.flip-container.hover .back {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  padding: 0px 15px; }

.flip-container:hover .front,
.flip-container.hover .front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg); }

.flip-container,
.front,
.back {
  height: 465px; }

.flipper {
  -webkit-transform: perspective(1000px);
          transform: perspective(1000px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative; }

.front,
.back {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

.front {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  background: #ffffff;
  z-index: 2;
  padding: 0px 20px; }

.back {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  background: #e4ecf4;
  padding: 0px 20px; }

.front .name {
  font-size: 2em;
  display: inline-block;
  background: rgba(51, 51, 51, 0.9);
  color: #ffffff;
  font-family: Courier;
  padding: 5px 10px;
  border-radius: 5px;
  bottom: 60px;
  left: 25%;
  position: absolute;
  text-shadow: 0.1em 0.1em 0.05em #333333;
  display: none;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg); }

.vertical.flip-container {
  position: relative; }

.vertical .back {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg); }

.vertical.flip-container .flipper {
  -webkit-transform-origin: 100% 213.5px;
          transform-origin: 100% 213.5px; }

.vertical.flip-container:hover .back,
.vertical.flip-container.hover .back {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg); }

.vertical.flip-container:hover .front,
.vertical.flip-container.hover .front {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg); }

.front img {
  display: block;
  margin: 40px auto 0; }

.inner-pd {
  padding: 0px 15px; }

.side_line-divisor:after {
  width: 1px;
  background: #3dabe8;
  height: 320px;
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -160px; }

@media (max-width: 37.75em) {
  .flip-container,
  .front,
  .back {
    width: 300px;
    height: 440px;
    margin: 0 auto; }
  .side_line-divisor:after {
    display: none; } }

.flip-container {
  height: auto; }

.flip-container, .flip-front, .flip-back {
  width: 100%; }

@media screen and (min-width: 992px) {
  .flip-container {
    height: 270px;
    margin-bottom: 1em; }
  /* flip the pane when hovered */
  .flip-container.hover .flipper {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg); }
    .flip-container.hover .flipper .flip-front {
      opacity: 0.5;
      -webkit-transition: opacity;
      transition: opacity; }
  /* flip speed goes here */
  .flipper {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    position: relative; }
  /* hide back of pane during swap */
  .flip-front, .flip-back {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0; }
  /* front pane, placed above back */
  .flip-front {
    z-index: 2;
    opacity: 1;
    /* for firefox 31 */
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  /* back, initially hidden pane */
  .flip-back {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg); } }

/*===================================================
FOOTER CHAT (FOLLOWING CHAT BUBBLE)
====================================================*/
/*
[markup]
    <div class="chat chat--rounded chat__blue">
        <a href="#" class="open_sales_chat">
            <i class="fa fa-comments-o"></i>
        </a>
    </div>
[/markup]
*/
.chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  -webkit-box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
          box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  z-index: 9; }
  .chat--rounded {
    border-radius: 49px; }
  .chat__blue {
    background: #025091; }
    .chat__blue:hover {
      background: #35a4dd; }
  .chat a {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #ffffff;
    font-size: 38px; }

/*===================================================
FOUR BENEFITS
Four benefits modules has 4 sections of content highligthing a benefit of a product
Used in the Microsoft 365 busines and enterprise pages
===================================================*/
/*===================================================
1. FOUR BENEFITS MODULE
===================================================*/
.four-benefits .c-4 {
  padding: 5px; }

.four-benefits .ben_one,
.four-benefits .ben_two,
.four-benefits .ben_three,
.four-benefits .ben_four {
  background-size: cover;
  background-position: center; }

.four-benefits .ben_one {
  background-image: url(https://images.apps4.com/images/microsoft-365/ben_AchieveMore.jpg); }

.four-benefits .ben_two {
  background-image: url(https://images.apps4.com/images/microsoft-365/ben_Empower.jpg); }

.four-benefits .ben_three {
  background-image: url(https://images.apps4.com/images/microsoft-365/ben_Protection.jpg); }

.four-benefits .ben_four {
  background-image: url(https://images.apps4.com/images/microsoft-365/ben_yourIT.jpg); }

.four-benefits .boxed {
  border: 1px solid #ffffff;
  padding: 80px 25px;
  min-height: 320px; }

.four-benefits ._benefit {
  font-family: 'ProximaNova';
  font-size: 21px;
  margin-bottom: 20px; }

.four-benefits ._description {
  line-height: 18px; }

.four-benefits.m365-enterprise-benefits .ben_one {
  background-image: url(https://images.apps4.com/images/microsoft-365/ben_UnlockCreativity.jpg); }

.four-benefits.m365-enterprise-benefits .ben_two {
  background-image: url(https://images.apps4.com/images/microsoft-365/ben_Resources.jpg); }

.four-benefits.m365-enterprise-benefits .ben_three {
  background-image: url(https://images.apps4.com/images/microsoft-365/ben_SimplifyIT.jpg); }

.four-benefits.m365-enterprise-benefits .ben_four {
  background-image: url(https://images.apps4.com/images/microsoft-365/ben_Security.jpg); }

@media (min-width: 800px) and (max-width: 1152px) {
  .four-benefits .boxed {
    padding: 60px 40px;
    min-height: 370px; } }

/*===================================================
HUMAN SLIDER
===================================================*/
.humanSlider {
  color: #ffffff;
  font-family: 'ProximaNova-Light'; }
  .humanSlider .slickLoader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2em 0; }
  .humanSlider .slidesHolder {
    display: none; }
    .humanSlider .slidesHolder.slick-initialized {
      display: block; }
  .humanSlider .humanSliderInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px 0 15px; }
    @media screen and (min-width: 992px) {
      .humanSlider .humanSliderInner {
        padding-top: 60px; } }
    @media screen and (min-width: 1200px) {
      .humanSlider .humanSliderInner {
        padding: 60px 125px 0 125px; } }
    .humanSlider .humanSliderInner .slick-arrow {
      position: absolute;
      top: 50%;
      color: #023866;
      -webkit-transition: all .4s linear;
      transition: all .4s linear;
      opacity: 0.5;
      -webkit-transform: translateX(-100%) translateY(-50%);
              transform: translateX(-100%) translateY(-50%);
      text-align: center;
      width: 15px;
      font-size: 15px;
      height: 15px; }
      .humanSlider .humanSliderInner .slick-arrow:hover {
        color: #ffffff;
        opacity: 1;
        cursor: pointer; }
      .humanSlider .humanSliderInner .slick-arrow.slick-prev {
        left: 0; }
      .humanSlider .humanSliderInner .slick-arrow.slick-next {
        left: 100%;
        -webkit-transform: translateX(0) translateY(-50%);
                transform: translateX(0) translateY(-50%); }
      @media screen and (min-width: 1200px) {
        .humanSlider .humanSliderInner .slick-arrow {
          width: 125px;
          font-size: 125px;
          height: 125px; } }
    .humanSlider .humanSliderInner .slick-dots {
      margin: 0 auto 0.1em auto;
      text-align: center;
      width: 100%; }
      @media screen and (min-width: 992px) {
        .humanSlider .humanSliderInner .slick-dots {
          position: absolute;
          bottom: 0; } }
      .humanSlider .humanSliderInner .slick-dots li {
        display: inline-block;
        color: #d4d4d4;
        padding: 0 0.5em;
        list-style: none;
        text-align: center;
        font-size: 13px;
        width: 33.333333%; }
        @media screen and (min-width: 768px) {
          .humanSlider .humanSliderInner .slick-dots li {
            width: 16%; } }
        @media screen and (min-width: 992px) {
          .humanSlider .humanSliderInner .slick-dots li {
            width: 14%; } }
        .humanSlider .humanSliderInner .slick-dots li span {
          display: block; }
          .humanSlider .humanSliderInner .slick-dots li span.dot span.img img {
            border-radius: 50%;
            border: 2px solid #ffffff;
            width: 100%;
            margin: 0 auto;
            display: block;
            background-color: #35a4dd; }
            @media screen and (min-width: 992px) {
              .humanSlider .humanSliderInner .slick-dots li span.dot span.img img {
                width: 65%; } }
          .humanSlider .humanSliderInner .slick-dots li span.dot span.text {
            padding-bottom: 0.5em;
            position: relative;
            line-height: 1.2em; }
        .humanSlider .humanSliderInner .slick-dots li:hover {
          cursor: pointer; }
        .humanSlider .humanSliderInner .slick-dots li.slick-active {
          color: #ffffff;
          text-decoration: underline;
          font-family: 'ProximaNova-Semibold';
          -webkit-transition: all .4s ease-in;
          transition: all .4s ease-in; }
          @media screen and (min-width: 992px) {
            .humanSlider .humanSliderInner .slick-dots li.slick-active {
              width: 20%;
              font-size: 21px; } }
          .humanSlider .humanSliderInner .slick-dots li.slick-active span.dot span.img img {
            border-color: #025091; }
          .humanSlider .humanSliderInner .slick-dots li.slick-active span.dot span.text {
            /* &:after{
								content:'';
								width:100%;
								height:1px;
								background:$blue;
								bottom:-2px;
								display:block;
							} */ }
    @media screen and (min-width: 768px) {
      .humanSlider .humanSliderInner .humanSlide {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    .humanSlider .humanSliderInner .humanSlide:focus {
      outline: 0; }
    .humanSlider .humanSliderInner .humanSlide .sliderHuman {
      position: relative;
      display: none; }
      .humanSlider .humanSliderInner .humanSlide .sliderHuman img {
        width: 500px;
        max-width: 100%; }
        @media screen and (min-width: 992px) {
          .humanSlider .humanSliderInner .humanSlide .sliderHuman img {
            position: absolute;
            bottom: 0; } }
      @media screen and (min-width: 992px) {
        .humanSlider .humanSliderInner .humanSlide .sliderHuman {
          width: 55%;
          display: block; } }
      .humanSlider .humanSliderInner .humanSlide .sliderHuman .humanTitle {
        position: absolute;
        top: 11%;
        font-size: 1.3em;
        width: 31%;
        line-height: normal;
        color: #d2d2d2; }
        .humanSlider .humanSliderInner .humanSlide .sliderHuman .humanTitle span {
          font-size: 57%;
          line-height: 16px;
          display: block;
          color: #35a4dd; }
    .humanSlider .humanSliderInner .humanSlide .sliderContent {
      -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center; }
      @media screen and (min-width: 992px) {
        .humanSlider .humanSliderInner .humanSlide .sliderContent {
          padding-bottom: 14%;
          width: 45%; } }
      .humanSlider .humanSliderInner .humanSlide .sliderContent .humanSliderTitle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .humanSlider .humanSliderInner .humanSlide .sliderContent .humanSliderTitle img {
          width: 80px;
          height: 80px;
          border-radius: 50%;
          border: 1px solid #ffffff;
          margin-right: 1em; }
          @media screen and (min-width: 992px) {
            .humanSlider .humanSliderInner .humanSlide .sliderContent .humanSliderTitle img {
              display: none; } }
      .humanSlider .humanSliderInner .humanSlide .sliderContent .humanSliderText {
        font-size: 1.25em; }
      .humanSlider .humanSliderInner .humanSlide .sliderContent .humanSliderQuote {
        position: relative;
        padding-left: 1em;
        font-size: 1em;
        margin-top: 1em; }
        .humanSlider .humanSliderInner .humanSlide .sliderContent .humanSliderQuote:before {
          width: 1px;
          height: 100%;
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          background: #35a4dd; }
        .humanSlider .humanSliderInner .humanSlide .sliderContent .humanSliderQuote span {
          color: #35a4dd;
          font-family: 'ProximaNova-Semibold';
          font-size: 75%; }
      .humanSlider .humanSliderInner .humanSlide .sliderContent h3 {
        font-size: 2.2em;
        font-family: 'ProximaNova-Bold'; }
        .humanSlider .humanSliderInner .humanSlide .sliderContent h3 .humanSliderContentSurtitle {
          font-size: 42%;
          display: block;
          text-transform: none; }
        .humanSlider .humanSliderInner .humanSlide .sliderContent h3 .humanSliderTitlePosition {
          font-size: 33%;
          display: block;
          text-transform: none;
          color: white; }
          @media screen and (min-width: 1200px) {
            .humanSlider .humanSliderInner .humanSlide .sliderContent h3 .humanSliderTitlePosition {
              display: none; } }
  .humanSlider.o365 .humanSlide {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media screen and (min-width: 992px) {
      .humanSlider.o365 .humanSlide .sliderHuman img {
        position: relative; } }
    @media screen and (min-width: 992px) {
      .humanSlider.o365 .humanSlide .sliderContent {
        padding-bottom: 20%; } }
  .humanSlider.o365 .humanSliderInner .slick-dots {
    margin-top: 1em; }
    @media screen and (min-width: 992px) {
      .humanSlider.o365 .humanSliderInner .slick-dots {
        margin-top: 0; } }
    .humanSlider.o365 .humanSliderInner .slick-dots li {
      max-width: 125px; }
      @media screen and (min-width: 992px) {
        .humanSlider.o365 .humanSliderInner .slick-dots li {
          max-width: 100%; } }
      .humanSlider.o365 .humanSliderInner .slick-dots li span.dot span.img img {
        background: none; }
      .humanSlider.o365 .humanSliderInner .slick-dots li.slick-active {
        text-decoration: none; }

/*===================================================
ICON LIST
====================================================*/
.icon--list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #dae4ef;
  padding: 20px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center; }
  @media (min-width: 768px) {
    .icon--list {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      text-align: left; } }
  .icon--list .icon--holder {
    display: none; }
    @media (min-width: 768px) {
      .icon--list .icon--holder {
        display: block; } }
  .icon--list .icon--holder,
  .icon--list .feature-name {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%; }
    @media (min-width: 768px) {
      .icon--list .icon--holder,
      .icon--list .feature-name {
        -ms-flex-preferred-size: 15%;
            flex-basis: 15%; } }
  .icon--list .description {
    -ms-flex-preferred-size: calc(100% - 20% - 15px);
        flex-basis: calc(100% - 20% - 15px); }
    @media (min-width: 768px) {
      .icon--list .description {
        padding-left: 15px; } }

.icons-list {
  text-align: center;
  color: #ffffff;
  text-transform: none;
  font-family: 'MuseoSans-300'; }
  .icons-list .content {
    text-align: center; }
    .icons-list .content .image {
      /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
      -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0);
              box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0);
      width: 117px;
      height: 117px;
      background: #ffffff;
      margin: 0 auto;
      position: relative; }
      .icons-list .content .image > img {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -50px;
        margin-left: -50px; }
      .icons-list .content .image:hover .the-tooltip {
        display: block;
        -webkit-animation-name: fadeIn_in;
                animation-name: fadeIn_in;
        -webkit-animation-duration: .24s;
                animation-duration: .24s;
        -webkit-transition-timing-function: ease-in-out;
                transition-timing-function: ease-in-out;
        -webkit-transition-delay: initial;
                transition-delay: initial; }
    .icons-list .content p {
      font-size: 20px;
      margin-top: 10px; }
  .icons-list .the-tooltip {
    /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0);
    width: 240px;
    background: #ffffff;
    bottom: -40px;
    position: absolute;
    right: -268px;
    z-index: 9;
    border-radius: 15px;
    padding: 17px;
    text-align: left;
    display: none; }
    .icons-list .the-tooltip p:first-child {
      color: #333333;
      font-family: 'MuseoSans-300';
      margin: 0; }
    .icons-list .the-tooltip p:not(:first-child) {
      color: #333333;
      font-family: 'ProximaNova';
      font-size: 16px;
      margin: 0; }
    .icons-list .the-tooltip .tool-tip--container {
      position: relative; }
      .icons-list .the-tooltip .tool-tip--container:before {
        content: "";
        position: absolute;
        left: -71px;
        top: 21px;
        color: blue;
        background: url(https://images.apps4.com/images/svg-website/azure-products/fleche-tooltip.svg) no-repeat;
        width: 60px;
        height: 20px; }
  .icons-list .c-6:last-of-type .the-tooltip {
    right: -60px;
    bottom: -125px; }
    .icons-list .c-6:last-of-type .the-tooltip .tool-tip--container:before {
      left: 50%;
      top: -50px;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg);
      margin-left: -30px; }

@media only screen and (max-width: 1200px) {
  .icons-list .content .image:hover .the-tooltip {
    display: none; } }

#all-icons {
  display: none; }

/*====================================================
INFO COL (Standard, preferred, premium, elite)
====================================================*/
.info-col {
  background: #ffffff;
  padding: 15px;
  min-height: 375px; }
  .info-col h3 {
    font-family: "MuseoSans-300", arial, sans-serif;
    font-size: 26px;
    line-height: 36px;
    padding: 30px 0 0;
    margin: 0 0 15px;
    color: #025091;
    font-weight: normal; }
  .info-col p {
    font-family: "MuseoSans-700";
    font-weight: normal;
    color: #3dabe8;
    font-size: 15px;
    line-height: 22px; }
    .info-col p span {
      display: block;
      font-family: "ProximaNova";
      font-size: 18px;
      color: #025091;
      margin: 15px 0 20px; }
  .info-col .discounts {
    font-size: 26px;
    margin: 20px 0 30px;
    font-weight: normal; }

.interactive-tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2em;
  font-size: 18px;
  font-family: 'ProximaNova-Bold';
  max-width: 1200px;
  margin: 0 auto; }
  .interactive-tiles .tile {
    -ms-flex-preferred-size: calc(100% - 2px);
        flex-basis: calc(100% - 2px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    padding: 0.5em;
    color: #025091;
    background: #ffffff; }
    .interactive-tiles .tile:hover .tile-icon {
      -webkit-transform: scale(0.75);
              transform: scale(0.75); }
    .interactive-tiles .tile .text {
      display: block;
      margin-top: 0.5em;
      font-family: inherit; }
    .interactive-tiles .tile:nth-of-type(2n+1) {
      border-left: 1px solid #333333; }
    .interactive-tiles .tile:nth-of-type(-n+1) {
      border-top: 1px solid #333333; }
    @media screen and (min-width: 992px) {
      .interactive-tiles .tile {
        -ms-flex-preferred-size: calc(33.333333% - 2px);
            flex-basis: calc(33.333333% - 2px);
        padding: 2.5em 0.5em; }
        .interactive-tiles .tile:nth-of-type(2n+1) {
          border-left: 0; }
        .interactive-tiles .tile:nth-of-type(3n+1) {
          border-left: 1px solid #333333; }
        .interactive-tiles .tile:nth-of-type(-n+2) {
          border-top: 0; }
        .interactive-tiles .tile:nth-of-type(-n+3) {
          border-top: 1px solid #333333; } }
    .interactive-tiles .tile:hover {
      background: linear-gradient(45deg, #31a5de, #0b5a99, #0B5A95, #1171bd);
      color: #ffffff; }

/*====================================================
LIST UNDERLINE
====================================================*/
.list-underline h5 {
  font-family: 'MuseoSans-500';
  font-size: 26px;
  text-align: left;
  padding: 10px 0 15px 0;
  color: #025091; }

.list-underline ul {
  list-style: none; }
  .list-underline ul li {
    border-top: 1px solid #6fa8db;
    padding: 10px 0;
    min-height: 50px; }
    .list-underline ul li:last-of-type {
      border-bottom: 1px solid #6fa8db; }
  .list-underline ul .fa {
    color: #7FCB15; }

.list-underline img {
  max-width: 100px;
  max-height: 100px; }

/*===================================================
//PACKAGE MODULE - Main package and extensions
===================================================*/
.package {
  background: #fbfbfb;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  text-align: left;
  font-family: 'MuseoSans-300';
  font-size: 1rem;
  margin: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .package h2 {
    margin-top: 0; }
  .package h3 {
    color: #35a4dd;
    margin-top: 0;
    font-size: 34px;
    font-family: 'ProximaNova'; }
  .package .icon-add {
    background: transparent;
    border: 2px dashed #35a4dd;
    color: #35a4dd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center; }
    .package .icon-add i {
      font-size: 31px;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translateY(-47%) translateX(-47%);
              transform: translateY(-47%) translateX(-47%); }
    .package .icon-add.side {
      top: -1px;
      left: 50%;
      -webkit-transform: translateX(-47%) translateY(-47%);
              transform: translateX(-47%) translateY(-47%);
      position: absolute; }
      @media screen and (min-width: 768px) {
        .package .icon-add.side {
          left: -1px;
          top: 50%; } }
  .package .package-pricing {
    text-align: center;
    padding: 2em 4em;
    border-radius: 3px;
    border-top: 1px solid #d4d4d4;
    font-family: 'ProximaNova';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    @media screen and (min-width: 768px) {
      .package .package-pricing {
        width: 30%;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
        border-top: 0;
        border-right: 1px solid #d4d4d4; } }
    .package .package-pricing .price {
      font-size: 74px;
      color: #025091;
      margin: 0 auto; }
      .package .package-pricing .price .frequency {
        font-size: 28px;
        color: #35a4dd;
        display: block; }
  .package .package-content {
    padding: 2em; }
    @media screen and (min-width: 768px) {
      .package .package-content {
        width: 70%; } }
  .package .features {
    padding: 1em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: 'ProximaNova'; }
    .package .features .feature {
      text-align: center;
      width: 45%; }
      @media screen and (min-width: 768px) {
        .package .features .feature {
          min-width: 35%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; } }
      .package .features .feature a {
        text-decoration: underline; }
      .package .features .feature i {
        display: block;
        width: 100%;
        color: #7FCB15;
        font-size: 30px;
        margin-right: 10px; }
        @media screen and (min-width: 768px) {
          .package .features .feature i {
            display: inline-block;
            width: auto; } }
  .package.extensions {
    border: 1px dashed #979797;
    margin-top: 3em; }
    @media screen and (min-width: 768px) {
      .package.extensions {
        margin-top: 2em; } }
    .package.extensions .package-pricing {
      border-top: 1px dashed #949494; }
      @media screen and (min-width: 768px) {
        .package.extensions .package-pricing {
          border-top: 0;
          border-right: 1px dashed #949494; } }
    .package.extensions .package-content {
      padding-top: 4em; }
      @media screen and (min-width: 768px) {
        .package.extensions .package-content {
          padding-top: 2em; } }

h2.package-title {
  color: #025091;
  display: block;
  margin-top: 0;
  font-family: 'MuseoSans-700'; }
  h2.package-title .smaller {
    color: #35a4dd;
    font-size: 70%;
    display: block;
    margin-top: 0.3em;
    font-family: 'MuseoSans-300'; }
  h2.package-title .text {
    font-size: inherit; }

p.package-note {
  text-align: left;
  font-family: 'MuseoSans-300'; }

/*===================================================
PERSONA MODULE
===================================================*/
.persona-module {
  padding: 60px 0; }
  @media (min-width: 992px) {
    .persona-module {
      padding: 0; }
      .persona-module .left-col, .persona-module .right-col {
        width: 50%; } }
  .persona-module .persona-holder {
    position: relative;
    display: none; }
    @media (min-width: 992px) {
      .persona-module .persona-holder {
        display: block; } }
  .persona-module .persona-info {
    position: absolute;
    top: 35%;
    right: 15%;
    font-family: 'ProximaNova-Light'; }
    .persona-module .persona-info h5 {
      font-size: 21px;
      font-family: inherit;
      letter-spacing: 1px; }
    .persona-module .persona-info span {
      display: block;
      color: #3dabe8;
      font-size: 14px;
      font-family: inherit;
      letter-spacing: normal; }
  .persona-module .perks {
    display: block;
    padding: 0 15px; }
    @media (min-width: 992px) {
      .persona-module .perks {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-preferred-size: calc(50% - 40px);
            flex-basis: calc(50% - 40px); } }
    .persona-module .perks .perk {
      margin-right: 40px; }
      @media (min-width: 992px) {
        .persona-module .perks .perk {
          -ms-flex-preferred-size: calc(50% - 40px);
              flex-basis: calc(50% - 40px); } }
      .persona-module .perks .perk:nth-child(-n+2) {
        margin-bottom: 40px; }
      .persona-module .perks .perk .icon-holder img {
        min-height: 85px; }
    .persona-module .perks h4 {
      color: #35a4dd; }

/*===================================================
PLAN PICKER
===================================================*/
.overlap-image {
  overflow: hidden;
  padding: 60px 0; }
  @media (min-width: 768px) {
    .overlap-image {
      padding: 0; } }
  .overlap-image .img-responsive {
    margin: 0 auto;
    display: block;
    max-width: 450px; }
    @media (min-width: 801px) {
      .overlap-image .img-responsive {
        position: relative;
        bottom: -100px;
        max-width: inherit; } }

.seat-calculator {
  background: #f2f9ff;
  padding: 80px 0 25px; }
  .seat-calculator ::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(84, 84, 84, 0.4) !important;
    opacity: 1;
    /* Firefox */ }
  .seat-calculator :-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(84, 84, 84, 0.4) !important;
    opacity: 1;
    /* Firefox */ }
  .seat-calculator ::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(84, 84, 84, 0.4) !important;
    opacity: 1;
    /* Firefox */ }
  .seat-calculator ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(84, 84, 84, 0.4) !important;
    opacity: 1;
    /* Firefox */ }
  .seat-calculator :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(84, 84, 84, 0.4) !important; }
  .seat-calculator ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(84, 84, 84, 0.4) !important; }
  .seat-calculator .slide {
    width: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    display: none; }
  .seat-calculator .active-slide {
    opacity: 1;
    z-index: 2;
    display: block; }
  .seat-calculator .quiz-container {
    position: relative;
    margin-top: 40px; }
  .seat-calculator .pagination {
    text-align: center;
    padding: 0;
    margin: 0; }
    .seat-calculator .pagination li {
      display: inline-block; }
      .seat-calculator .pagination li:hover {
        cursor: auto; }
      .seat-calculator .pagination li:not(:last-child) {
        margin-right: 10px; }
      .seat-calculator .pagination li a {
        width: 65px;
        background: #dde6f0;
        display: block;
        text-indent: -99999px;
        border-radius: 42px;
        padding: 3px 0;
        height: 0;
        border: 0; }
        .seat-calculator .pagination li a:hover {
          cursor: auto; }
  .seat-calculator .pagination-item.active {
    background: #31a5de; }
  .seat-calculator .pagination-item:not(.active) {
    -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.3); }
  .seat-calculator .controls-slider button:first-of-type {
    margin-right: 20px; }
  .seat-calculator .plans {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 992px) {
      .seat-calculator .plans {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: unset;
            -ms-flex-align: unset;
                align-items: unset; } }
    .seat-calculator .plans .plan:not(:last-of-type) {
      margin-bottom: 60px; }
      @media (min-width: 992px) {
        .seat-calculator .plans .plan:not(:last-of-type) {
          margin-right: 30px;
          margin-bottom: 0; } }
  .seat-calculator .company-size .plan {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    text-align: center;
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 45px 0 10px;
    border: 2px solid rgba(208, 230, 253, 0.5);
    max-width: 290px;
    min-width: 290px;
    width: 290px;
    height: 395px;
    -webkit-transition: border .24s ease-in-out;
    transition: border .24s ease-in-out; }
    @media (min-width: 992px) {
      .seat-calculator .company-size .plan {
        -ms-flex-preferred-size: calc(100% / 3);
            flex-basis: calc(100% / 3); } }
    .seat-calculator .company-size .plan:hover, .seat-calculator .company-size .plan.is-active {
      border: 2px solid #31a5de;
      cursor: pointer; }
    .seat-calculator .company-size .plan p {
      margin-top: 10px;
      font-size: 21px;
      margin-bottom: 20px; }
  .seat-calculator .is-active .select-dot {
    border: 2px solid #3ba5df; }
    .seat-calculator .is-active .select-dot:before {
      background: #3ba5df; }
  .seat-calculator .select-dot {
    display: inline-block;
    background: transparent;
    border: 2px solid #dae4ef;
    padding: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    font-size: inherit; }
    .seat-calculator .select-dot:before {
      content: '';
      padding: 7.5px;
      width: 7.5px;
      height: 7.5px;
      background: transparent;
      position: absolute;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .seat-calculator .model-plans {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media (min-width: 992px) {
      .seat-calculator .model-plans {
        -ms-flex-preferred-size: 70%;
            flex-basis: 70%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
    .seat-calculator .model-plans:after {
      content: '';
      width: 1.5px;
      height: 100%;
      position: absolute;
      background: #dde6f0;
      right: 5px;
      top: 0;
      display: none; }
      @media (min-width: 1200px) {
        .seat-calculator .model-plans:after {
          display: block; } }
  .seat-calculator #toggles {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .seat-calculator #toggles .model-plans {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media (min-width: 992px) and (max-width: 1200px) {
        .seat-calculator #toggles .model-plans {
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;
          margin-bottom: 60px; } }
  .seat-calculator .plans-control {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    min-width: 320px; }
    @media (min-width: 992px) {
      .seat-calculator .plans-control {
        min-width: unset;
        -ms-flex-preferred-size: 40%;
            flex-basis: 40%;
        margin-right: 40px; } }
  .seat-calculator .plans-view {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-top: 30px;
    max-width: 320px; }
    @media (min-width: 992px) {
      .seat-calculator .plans-view {
        max-width: unset;
        -ms-flex-preferred-size: 60%;
            flex-basis: 60%;
        margin-top: 0; } }
  .seat-calculator .addons,
  .seat-calculator .fees {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 0 35px; }
  .seat-calculator .addons {
    position: relative;
    margin-bottom: 60px; }
    @media (min-width: 992px) {
      .seat-calculator .addons {
        margin-bottom: 0; } }
    .seat-calculator .addons:after {
      content: "";
      width: 1px;
      height: 100%;
      position: absolute;
      right: 13px;
      top: 0;
      background: #dde6f0;
      display: none; }
      @media (min-width: 992px) {
        .seat-calculator .addons:after {
          display: block; } }
  .seat-calculator .toggle-content + .toggle-content {
    margin-top: 10px; }
  .seat-calculator .toggle-content > label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 300;
    font-size: 14px; }
  .seat-calculator .toggle-content .toggle-content--component {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .seat-calculator .toggle-content .toggle-content--component .values {
      margin-right: 10px; }
  .seat-calculator .toggle-content .currency-preffix {
    display: inline-block;
    vertical-align: middle;
    font-size: 21px;
    background: #ffffff;
    padding-left: 10px; }
    .seat-calculator .toggle-content .currency-preffix input[type="number"] {
      border: 0;
      font-size: 21px;
      height: 35px;
      padding: 0 0 0 5px;
      width: 125px;
      background: white; }
      .seat-calculator .toggle-content .currency-preffix input[type="number"]:disabled {
        color: rgba(84, 84, 84, 0.4); }
      .seat-calculator .toggle-content .currency-preffix input[type="number"]:focus {
        outline: none !important;
        border: 0;
        -webkit-box-shadow: none;
                box-shadow: none; }
  .seat-calculator .toggle-content.switch .currency-preffix {
    outline: none !important;
    border: 1px solid #32a4de;
    -webkit-box-shadow: 0 0 10px #719ECE;
            box-shadow: 0 0 10px #719ECE; }
  .seat-calculator .toggle-content .license {
    font-size: 17px;
    font-family: 'ProximaNova';
    letter-spacing: -.4px;
    margin-left: 5px;
    margin-right: 45px; }
  .seat-calculator .plan-picker .plans-control .select-dot {
    left: -10px; }
  .seat-calculator .plan-picker .plans-control .pick-plan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 195px; }
  .seat-calculator .plan-picker .plans-control span:not(.select-dot) {
    color: #31a5de;
    font-family: "ProximaNova-Bold";
    font-size: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center; }
    .seat-calculator .plan-picker .plans-control span:not(.select-dot):hover {
      cursor: pointer; }
  .seat-calculator .plan-picker input[type="radio"] {
    position: relative;
    left: -20px; }
  .seat-calculator .plan-picker .plan {
    padding: 25px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 2px solid #dae4ef;
    background: transparent;
    -webkit-transition: all .34s ease;
    transition: all .34s ease;
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .seat-calculator .plan-picker .plan.is-active {
      background: #fff;
      border: 2px solid #31a5de; }
      .seat-calculator .plan-picker .plan.is-active .select-dot {
        border-color: #3ba5df; }
        .seat-calculator .plan-picker .plan.is-active .select-dot:before {
          background: #3ba5df; }
    .seat-calculator .plan-picker .plan:not(:first-of-type) {
      margin-top: 20px; }
  .seat-calculator .plan-picker .plan-view {
    display: none; }
    .seat-calculator .plan-picker .plan-view.is-active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
  .seat-calculator .plan-picker .features ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 100%; }
    @media (min-width: 992px) {
      .seat-calculator .plan-picker .features ul {
        height: 300px;
        margin-right: 95px; } }
    .seat-calculator .plan-picker .features ul li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      opacity: .3;
      margin-bottom: 10px;
      margin-right: 15px;
      max-width: 245px; }
    .seat-calculator .plan-picker .features ul .icon-feature,
    .seat-calculator .plan-picker .features ul .feature-description {
      width: inherit;
      height: inherit; }
    .seat-calculator .plan-picker .features ul .image-featured {
      margin-right: 5px;
      width: 20px;
      height: 20px;
      max-width: inherit; }
    .seat-calculator .plan-picker .features ul .listed {
      opacity: 1; }
  .seat-calculator .plan-picker h3 {
    margin-bottom: 30px;
    font-family: "ProximaNova-SemiBold";
    color: #32a4de;
    margin-bottom: 20px;
    margin-top: 0; }

.earning {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: relative;
  text-align: center; }
  @media (min-width: 992px) {
    .earning {
      -ms-flex-preferred-size: 30%;
          flex-basis: 30%; } }
  .earning.second-canvas {
    margin-top: 60px; }
    @media (min-width: 992px) {
      .earning.second-canvas {
        margin-top: 0; } }
  .earning canvas {
    margin: 0 auto;
    display: block; }
  .earning .print-earn {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
    .earning .print-earn.first-canvas {
      top: 55%;
      left: 50%;
      font-size: 2.5rem; }
    .earning .print-earn.second-canvas {
      top: 55%;
      left: 50%;
      font-size: 2.8rem;
      letter-spacing: -1.5px; }
    .earning .print-earn.last-canvas {
      top: 37%;
      left: 50%;
      font-size: 2.5rem;
      letter-spacing: -1px; }

.model-plans .print-earn {
  top: 62%;
  left: 30%; }

.story-component {
  padding: 60px 0;
  background-color: #025091;
  background-size: cover; }
  .story-component li {
    margin: 0 auto 20px; }
    @media (min-width: 768px) {
      .story-component li {
        display: inline-block; }
        .story-component li:not(:last-of-type) {
          margin-right: 100px; } }
    @media (min-width: 992px) {
      .story-component li:not(:last-of-type) {
        margin-right: 200px; } }
  .story-component .story {
    display: none; }
    .story-component .story.is-active {
      display: block; }
  .story-component .story-copy {
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    padding: 40px 0;
    max-width: 700px;
    margin: 0 auto 30px; }

.can-toggle {
  position: relative; }
  .can-toggle input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0; }
    .can-toggle input[type="checkbox"][disabled] ~ label {
      pointer-events: none; }
      .can-toggle input[type="checkbox"][disabled] ~ label .can-toggle__switch {
        opacity: 0.4; }
    .can-toggle input[type="checkbox"]:checked ~ label .can-toggle__switch:before {
      content: attr(data-unchecked);
      left: 0;
      cursor: pointer; }
    .can-toggle input[type="checkbox"]:checked ~ label .can-toggle__switch:after {
      content: attr(data-checked);
      cursor: pointer; }
  .can-toggle label {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .can-toggle label:hover {
      cursor: pointer; }
    .can-toggle label .can-toggle__label-text {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      padding-left: 32px; }
    .can-toggle label .can-toggle__switch {
      position: relative; }
      .can-toggle label .can-toggle__switch:before {
        content: '';
        position: absolute;
        top: 0;
        text-transform: uppercase;
        text-align: center;
        cursor: pointer; }
      .can-toggle label .can-toggle__switch:after {
        content: '';
        position: absolute;
        z-index: 5;
        text-transform: uppercase;
        text-align: center;
        background: white;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
        cursor: pointer; }
  .can-toggle input[type="checkbox"][disabled] ~ label {
    color: rgba(119, 119, 119, 0.5); }
  .can-toggle input[type="checkbox"]:focus ~ label .can-toggle__switch,
  .can-toggle input[type="checkbox"]:hover ~ label .can-toggle__switch {
    background-color: #777; }
    .can-toggle input[type="checkbox"]:focus ~ label .can-toggle__switch:after,
    .can-toggle input[type="checkbox"]:hover ~ label .can-toggle__switch:after {
      color: #5e5e5e; }
  .can-toggle input[type="checkbox"]:hover ~ label {
    color: #6a6a6a; }
  .can-toggle input[type="checkbox"]:checked ~ label:hover {
    color: #249fdc; }
  .can-toggle input[type="checkbox"]:checked ~ label .can-toggle__switch {
    background-color: #47afe2; }
    .can-toggle input[type="checkbox"]:checked ~ label .can-toggle__switch:after {
      color: #2299d4; }
  .can-toggle input[type="checkbox"]:checked:focus ~ label .can-toggle__switch, .can-toggle input[type="checkbox"]:checked:hover ~ label .can-toggle__switch {
    background-color: #31A5DE; }
    .can-toggle input[type="checkbox"]:checked:focus ~ label .can-toggle__switch:after, .can-toggle input[type="checkbox"]:checked:hover ~ label .can-toggle__switch:after {
      color: #1e89be; }
  .can-toggle label .can-toggle__label-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .can-toggle label .can-toggle__switch {
    -webkit-transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
    transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
    background: #848484; }
    .can-toggle label .can-toggle__switch:before {
      color: rgba(255, 255, 255, 0.5);
      opacity: 0; }
    .can-toggle label .can-toggle__switch:after {
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
      transition: -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
      transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
      transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1), -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
      color: #777; }
  .can-toggle input[type="checkbox"]:focus ~ label .can-toggle__switch:after,
  .can-toggle input[type="checkbox"]:hover ~ label .can-toggle__switch:after {
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
            box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4); }
  .can-toggle input[type="checkbox"]:checked ~ label .can-toggle__switch:after {
    -webkit-transform: translate3d(65px, 0, 0);
            transform: translate3d(65px, 0, 0); }
  .can-toggle input[type="checkbox"]:checked:focus ~ label .can-toggle__switch:after, .can-toggle input[type="checkbox"]:checked:hover ~ label .can-toggle__switch:after {
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
            box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4); }
  .can-toggle label {
    font-size: 14px; }
    .can-toggle label .can-toggle__switch {
      height: 36px;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 134px;
              flex: 0 0 134px;
      border-radius: 4px; }
      .can-toggle label .can-toggle__switch:before {
        left: 67px;
        font-size: 12px;
        line-height: 36px;
        width: 67px;
        padding: 0 12px; }
      .can-toggle label .can-toggle__switch:after {
        top: 2px;
        left: 2px;
        border-radius: 2px;
        width: 65px;
        line-height: 32px;
        font-size: 12px; }
      .can-toggle label .can-toggle__switch:hover:after {
        -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
                box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4); }
  .can-toggle.can-toggle--size-small input[type="checkbox"]:focus ~ label .can-toggle__switch:after,
  .can-toggle.can-toggle--size-small input[type="checkbox"]:hover ~ label .can-toggle__switch:after {
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4); }
  .can-toggle.can-toggle--size-small input[type="checkbox"]:checked ~ label .can-toggle__switch:after {
    -webkit-transform: translate3d(44px, 0, 0);
            transform: translate3d(44px, 0, 0); }
  .can-toggle.can-toggle--size-small input[type="checkbox"]:checked:focus ~ label .can-toggle__switch:after, .can-toggle.can-toggle--size-small input[type="checkbox"]:checked:hover ~ label .can-toggle__switch:after {
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4); }
  .can-toggle.can-toggle--size-small label {
    font-size: 13px; }
    .can-toggle.can-toggle--size-small label .can-toggle__switch {
      height: 28px;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 90px;
              flex: 0 0 90px;
      border-radius: 2px; }
      .can-toggle.can-toggle--size-small label .can-toggle__switch:before {
        left: 45px;
        font-size: 10px;
        line-height: 28px;
        width: 45px;
        padding: 0 12px; }
      .can-toggle.can-toggle--size-small label .can-toggle__switch:after {
        top: 1px;
        left: 1px;
        border-radius: 1px;
        width: 44px;
        line-height: 26px;
        font-size: 10px; }
      .can-toggle.can-toggle--size-small label .can-toggle__switch:hover:after {
        -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
                box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4); }

#seats-footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 45px 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 992px) {
    #seats-footer {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  #seats-footer > *:not(:first-child), #seats-footer > *:not(:last-child) {
    margin: 10px 0; }
    @media (min-width: 992px) {
      #seats-footer > *:not(:first-child), #seats-footer > *:not(:last-child) {
        margin: 0 30px; } }
  #seats-footer a {
    text-decoration: underline; }
    #seats-footer a.what-next {
      display: none; }

.seats-modal {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #025091;
  max-width: 420px;
  z-index: 9;
  color: #ffffff;
  padding: 0 20px 30px;
  text-align: left; }
  .seats-modal .seats-modal--header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 0 5px; }
    .seats-modal .seats-modal--header .close-seat-modal {
      position: relative;
      top: -10px; }
      .seats-modal .seats-modal--header .close-seat-modal:hover {
        cursor: pointer; }
  .seats-modal p {
    font-size: 14px; }

#seats-results canvas,
#seats-results img {
  margin: 0 auto; }

#seats-results img {
  display: block;
  width: 247px; }

#seats-results .first {
  position: relative;
  margin-bottom: 60px; }
  @media (min-width: 992px) {
    #seats-results .first {
      margin-bottom: 0; } }
  #seats-results .first:after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #dde6f0;
    display: none; }
    @media (min-width: 992px) {
      #seats-results .first:after {
        display: block; } }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.animated {
  -webkit-animation-duration: 850ms;
          animation-duration: 850ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }
  .animated.infinite {
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp; }

#generate-pdf {
  display: none; }

.results-modal-window {
  background: #025091;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto; }
  .results-modal-window .mktoFormRow.gdpr-info {
    padding: 35px 0 0 0;
    margin: 20px 0 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid #ffffff !important;
    font-family: 'ProximaNova';
    padding-top: 15px; }
    .results-modal-window .mktoFormRow.gdpr-info .check-info a,
    .results-modal-window .mktoFormRow.gdpr-info .check-info p {
      color: #ffffff !important;
      font-family: 'ProximaNova-Bold'; }
  .results-modal-window .popup-modal-dismiss {
    position: absolute;
    right: 30px;
    top: 25px; }
  .results-modal-window .mktoForm {
    width: 100% !important; }
    .results-modal-window .mktoForm,
    .results-modal-window .mktoForm * {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: 0px; }
    .results-modal-window .mktoForm:after {
      clear: both;
      content: "";
      display: table; }
    .results-modal-window .mktoForm .mktoClear,
    .results-modal-window .mktoForm .mktoFormRow.hidden,
    .results-modal-window .mktoForm .mktoGutter,
    .results-modal-window .mktoForm .mktoOffset {
      display: none; }
    .results-modal-window .mktoForm .mktoAsterix,
    .results-modal-window .mktoForm .mktoRequiredField .mktoAsterix {
      padding: 0 5px 0 0;
      float: left; }
    .results-modal-window .mktoForm .mktoFieldWrap,
    .results-modal-window .mktoForm .mktoFormCol {
      width: 100%;
      margin-bottom: 0; }
      .results-modal-window .mktoForm .mktoFieldWrap > label,
      .results-modal-window .mktoForm .mktoFormCol > label {
        width: 100% !important;
        font-family: 'ProximaNova-Bold';
        color: #ffffff !important; }
        .results-modal-window .mktoForm .mktoFieldWrap > label[for="agreement"],
        .results-modal-window .mktoForm .mktoFormCol > label[for="agreement"] {
          width: 310px !important;
          float: right;
          clear: right; }
        .results-modal-window .mktoForm .mktoFieldWrap > label:hover,
        .results-modal-window .mktoForm .mktoFormCol > label:hover {
          cursor: pointer; }
    .results-modal-window .mktoForm .mktoFormCol {
      margin: 0 !important; }
    .results-modal-window .mktoForm .mktoRadioList {
      width: 100% !important; }
    .results-modal-window .mktoForm .mktoButtonRow,
    .results-modal-window .mktoForm .mktoFormRow {
      float: left;
      clear: both;
      width: 100%;
      font-family: "ProximaNova"; }
    .results-modal-window .mktoForm input[type="date"],
    .results-modal-window .mktoForm input[type="email"],
    .results-modal-window .mktoForm input[type="number"],
    .results-modal-window .mktoForm input[type="tel"],
    .results-modal-window .mktoForm input[type="text"],
    .results-modal-window .mktoForm input[type="url"],
    .results-modal-window .mktoForm select.mktoField,
    .results-modal-window .mktoForm textarea.mktoField {
      height: auto;
      line-height: normal;
      font-size: 14px;
      font-family: 'ProximaNova';
      border-radius: 0;
      min-height: 40px;
      color: #ffffff; }
    .results-modal-window .mktoForm .mktoFormRow input,
    .results-modal-window .mktoForm .mktoFormRow select,
    .results-modal-window .mktoForm .mktoFormRow textarea {
      clear: both;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      font-size: 16px;
      line-height: 1rem;
      font-weight: 500;
      width: 100% !important;
      font-family: 'ProximaNova'; }
    .results-modal-window .mktoForm .mktoFormRow label {
      float: left;
      padding-bottom: 3px;
      width: 305px !important; }
      .results-modal-window .mktoForm .mktoFormRow label[for="profilingWantstobeContacted"] {
        float: right !important; }
    .results-modal-window .mktoForm .mktoFormRow label[for*="mktoRadio_"] {
      margin: 0 0 0 5px;
      line-height: 25px; }
    .results-modal-window .mktoForm .mktoFormRow input:not(input[type="radio"]),
    .results-modal-window .mktoForm .mktoFormRow select,
    .results-modal-window .mktoForm .mktoFormRow textarea {
      float: right;
      min-height: 30px; }
    .results-modal-window .mktoForm .mktoFormRow input,
    .results-modal-window .mktoForm .mktoFormRow textarea,
    .results-modal-window .mktoForm .mktoFormRow select {
      padding: 10px;
      border: 0;
      background: transparent;
      border-bottom: 1px solid #ffffff; }
      .results-modal-window .mktoForm .mktoFormRow input:placeholder,
      .results-modal-window .mktoForm .mktoFormRow textarea:placeholder,
      .results-modal-window .mktoForm .mktoFormRow select:placeholder {
        color: #e30613; }
    .results-modal-window .mktoForm .mktoFormRow input[type=checkbox] {
      float: left;
      clear: left;
      width: 25px !important;
      padding: 0;
      margin: 0;
      border: none; }
    .results-modal-window .mktoForm .mktoFormRow input[type=radio] {
      float: left;
      clear: left;
      width: 15px !important;
      height: 25px;
      padding: 0;
      margin: 0;
      border: none; }
    .results-modal-window .mktoForm .mktoFormRow select {
      font-family: "Proxima Nova Regular";
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAG0lEQVR42mNgwAfKy8v/48I4FeA0AacVDFQBAP9wJkE/KhUMAAAAAElFTkSuQmCC");
      background-repeat: no-repeat;
      background-color: #ffffff;
      background-position: calc(100% - 5px);
      -webkit-appearance: none;
      -webkit-border-radius: 0; }
    .results-modal-window .mktoForm .mktoFormRow textarea {
      height: auto; }
    .results-modal-window .mktoForm .mktoFormRow.checkbox label {
      width: 83% !important;
      margin: 0 0 0 36px;
      text-transform: none; }
    .results-modal-window .mktoForm .mktoFormRow.checkbox input {
      margin-top: -34px; }
    .results-modal-window .mktoForm .mktoButtonRow {
      text-align: center;
      margin-top: 10px;
      margin-bottom: 15px; }
      .results-modal-window .mktoForm .mktoButtonRow button.mktoButton {
        -webkit-transition: all 0.34s ease 0s;
        transition: all 0.34s ease 0s;
        background: #e30613;
        border: none;
        bottom: 30px;
        -webkit-box-shadow: 0 5px 0 #b1050f;
                box-shadow: 0 5px 0 #b1050f;
        color: #ffffff;
        display: block;
        font-size: 20px;
        padding: 15px 35px;
        text-align: center;
        text-decoration: none;
        width: 100%;
        border-radius: 3px;
        margin: 0px;
        font-family: 'ProximaNova-Bold'; }
        .results-modal-window .mktoForm .mktoButtonRow button.mktoButton:hover {
          background: #b1050f;
          -webkit-box-shadow: 0 5px 0 #e30613;
                  box-shadow: 0 5px 0 #e30613;
          border: 0; }
      .results-modal-window .mktoForm .mktoButtonRow .mktoButtonWrap {
        margin: 0 !important; }
  .results-modal-window .mktoFormRow:not(:last-child) {
    padding-bottom: 10px; }
  @media only screen and (max-width: 767px) {
    .results-modal-window .marketo-form .mktoForm .mktoFormRow {
      clear: none;
      width: 100%;
      margin-right: 10px; } }
  @media only screen and (min-width: 768px) {
    .results-modal-window .marketo-form .mktoForm .mktoFormRow {
      clear: none;
      width: 100%;
      margin-right: 10px; } }
  @media only screen and (min-width: 980px) {
    .results-modal-window .marketo-form .mktoForm .mktoFormRow {
      clear: both;
      width: 100%;
      margin-right: 0; }
      .results-modal-window .marketo-form .mktoForm .mktoFormRow label {
        padding-left: 0;
        font-size: 14px;
        color: #ffffff !important; }
      .results-modal-window .marketo-form .mktoForm .mktoFormRow.checkbox label, .results-modal-window .marketo-form .mktoForm .mktoFormRow.select-dropdown label {
        text-transform: none; } }
  @media only screen and (min-width: 1060px) {
    .results-modal-window .marketo-form .mktoForm .mktoFormRow {
      clear: none;
      width: 100%;
      margin-right: 10px; }
      .results-modal-window .marketo-form .mktoForm .mktoFormRow.select-dropdown:nth-of-type(even) {
        /* Intended as 'odd', but apparently there's a hidden one somewhere? So Weird. */
        clear: left; } }
  .results-modal-window .success-message {
    display: none; }
  .results-modal-window .c-2 ~ .c-2 .mktoFormRow:nth-child(6) {
    height: 30px;
    margin-top: 19px; }

.plan__picker .frame-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 992px) {
    .plan__picker .frame-flex {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.plan__picker .plans-control__picker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px; }
  @media (min-width: 800px) and (max-width: 991px) {
    .plan__picker .plans-control__picker {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      padding: 0 15px;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; } }
  @media (min-width: 992px) {
    .plan__picker .plans-control__picker {
      display: unset;
      -ms-flex-preferred-size: calc( 35% - 60px);
          flex-basis: calc( 35% - 60px);
      margin-right: 60px; } }
  .plan__picker .plans-control__picker .pick-plan__unique {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .plan__picker .plans-control__picker .select-dot {
    display: inline-block;
    background: transparent;
    border: 2px solid #dae4ef;
    padding: 12px;
    border-radius: 50%;
    position: relative;
    left: -10px;
    font-size: inherit; }
    .plan__picker .plans-control__picker .select-dot:before {
      content: '';
      padding: 9px;
      background: transparent;
      position: absolute;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .plan__picker .plans-control__picker span:not(.select-dot) {
    color: #31a5de;
    font-family: 'MuseoSans-500';
    font-size: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .plan__picker .plans-control__picker span:not(.select-dot):hover {
      cursor: pointer; }

.plan__picker input[type="radio"] {
  position: relative;
  left: -20px; }

@media (min-width: 992px) {
  .plan__picker .plans-view__picker {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%; } }

.plan__picker .plan__picker {
  padding: 20px 30px;
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid #dae4ef;
  background: transparent;
  -webkit-transition: all .34s ease;
  transition: all .34s ease;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 992px) {
    .plan__picker .plan__picker {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .plan__picker .plan__picker .plan-info p {
        max-width: 90px;
        line-height: normal; } }
  @media (min-width: 800px) and (max-width: 991px) {
    .plan__picker .plan__picker {
      margin: 0 20px 40px; } }
  .plan__picker .plan__picker.is-active {
    background: #ffffff;
    border: 2px solid #35a4dd; }
    .plan__picker .plan__picker.is-active .select-dot {
      border-color: #3ba5df; }
    .plan__picker .plan__picker.is-active .select-dot:before {
      background: #3ba5df; }

.plan__picker .plan-view__picker-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 801px) {
    .plan__picker .plan-view__picker-header {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-pack: distribute;
          justify-content: space-around; } }
  @media (min-width: 768px) {
    .plan__picker .plan-view__picker-header p {
      font-size: 16px;
      max-width: 250px;
      min-height: 80px; } }
  .plan__picker .plan-view__picker-header > div:not(:last-child) {
    position: relative; }
    .plan__picker .plan-view__picker-header > div:not(:last-child):before {
      display: none; }
      @media (min-width: 992px) {
        .plan__picker .plan-view__picker-header > div:not(:last-child):before {
          content: '';
          position: absolute;
          width: 2px;
          height: 100%;
          top: 0;
          right: -35px;
          background: #dae4ef; } }

.plan__picker .plan-view__picker-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  margin-bottom: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.plan__picker .plan-view__picker {
  display: none; }
  .plan__picker .plan-view__picker.is-active {
    display: block; }
  .plan__picker .plan-view__picker a:not([class="button button-green"]) {
    color: #444444;
    text-decoration: underline; }
    .plan__picker .plan-view__picker a:not([class="button button-green"]):first-of-type {
      margin-right: 20px; }

.flex-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (min-width: 768px) {
    .flex-icon.flex-end {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
    .flex-icon.flex-start {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
  .flex-icon .icon--holder {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
    width: 15%; }
    @media (min-width: 768px) {
      .flex-icon .icon--holder {
        margin-right: 20px; } }
  .flex-icon .feature--holder {
    text-align: left; }
  .flex-icon img {
    max-width: inherit; }

.radius-border {
  border-radius: 5px; }

.boxed {
  border: 1px solid #025091;
  padding: 65px 30px 75px 30px;
  max-width: 420px;
  margin: 0 auto 30px; }

.icons-white a.white:hover {
  text-decoration: underline; }

.o365-solutions-buy, .trust-protection {
  /*.two-logos {
		margin: 20px auto;
	}*/ }
  .o365-solutions-buy .price, .trust-protection .price {
    font-family: "MuseoSans-100";
    font-size: 50px;
    letter-spacing: -2px; }
    .o365-solutions-buy .price span, .trust-protection .price span {
      font-family: "MuseoSans-300";
      display: block;
      font-size: 14px;
      letter-spacing: normal; }

.trust-protection {
  /*
	div.c-3 {
		padding: 0px;
		h3 {
			color: $secondary;
		}
	}
	div.c-3:nth-of-type(odd) {
		margin-top: 20px;
		z-index: 9;
	}
	div.c-3:nth-of-type(2) .card-white {
		min-height: 600px;
		z-index: 10;
		position: relative;
	}
	div.c-3:nth-of-type(2) .price {
		margin-top: 60px;
	}
	.check,
	.redX {
		content: "";
		height: 20px;
	}
	.check {
		background: url('https://images.apps4.com/images/exchange/green_check.svg') no-repeat center center;
	}
	.redX {
		background: url('https://images.apps4.com/images/exchange/red_x.svg') no-repeat center center;
	}
	.price {
		font-family: "MuseoSans-100";
		margin: 40px 0px 0px 0px;
		font-size: 25px;
		line-height: 18px;
		@media screen and (min-width: 992px) {
			font-size: 56px;
			line-height: 42px;
			letter-spacing: -3px;
		}
		span {
			letter-spacing: normal;
			display: block;
		}
	}
	.ppu {
		font-size: 20px;
	}
	*/ }

/*===================================================
PRICE TABLE
===================================================*/
@media (min-width: 992px) {
  .price-table .toggle-visibility {
    display: none; } }

.price-table .toggle-visibility .toggle-text {
  letter-spacing: -.5px;
  font-size: 19px; }

.price-table .toggle-visibility:hover {
  cursor: pointer; }

.price-table .toggle-visibility.active i {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg); }

.price-table .price-column--features {
  display: none; }

.price-table .best-value {
  background: #025091;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 604px) {
    .price-table .best-value {
      margin-top: -56px; } }

@media (min-width: 604px) {
  .price-component .price-column-holder {
    background: #ffffff; } }

.price-component .price-column-holder:nth-child(2) .price-column {
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
  position: relative;
  z-index: 1; }
  @media (min-width: 768px) {
    .price-component .price-column-holder:nth-child(2) .price-column {
      min-height: 1780px; }
      body.fr .price-component .price-column-holder:nth-child(2) .price-column {
        min-height: 2055px; } }
  @media (min-width: 604px) {
    .price-component .price-column-holder:nth-child(2) .price-column {
      -webkit-box-shadow: 0 10px 30px 3px rgba(3, 27, 56, 0.15);
              box-shadow: 0 10px 30px 3px rgba(3, 27, 56, 0.15);
      margin-bottom: 0;
      padding-bottom: 110px; } }

.price-component .price-column-holder .price-column {
  background: #ffffff;
  margin: 0 auto 30px;
  max-width: 380px;
  border: 1px solid #dcdcdc;
  padding-bottom: 15px; }
  @media (min-width: 768px) {
    .price-component .price-column-holder .price-column {
      min-height: 1725px;
      margin: 0 auto; }
      body.fr .price-component .price-column-holder .price-column {
        min-height: 2000px; } }
  .price-component .price-column-holder .price-column .create-items {
    min-height: 235px;
    padding-top: 30px; }
  @media (min-width: 604px) {
    .price-component .price-column-holder .price-column {
      border: 0;
      max-width: inherit; } }
  .price-component .price-column-holder .price-column .regular-text, .price-component .price-column-holder .price-column #newsroom p, #newsroom .price-component .price-column-holder .price-column p {
    font-size: 16px; }
  .price-component .price-column-holder .price-column .bold-small-title {
    margin: 20px 0 15px; }
  .price-component .price-column-holder .price-column .featured-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .price-component .price-column-holder .price-column .featured-item:not(:last-of-type) {
      margin-bottom: 5px; }
    .price-component .price-column-holder .price-column .featured-item img {
      width: 25px;
      margin-right: 10px; }
    .price-component .price-column-holder .price-column .featured-item.no-icon p {
      padding-left: 35px; }

.price-component .price-column-holder .price-column--header {
  padding: 40px 40px 0;
  min-height: 355px; }
  .price-component .price-column-holder .price-column--header .plan-name {
    min-height: 120px; }
    .price-component .price-column-holder .price-column--header .plan-name .section-title {
      letter-spacing: -1px; }

.price-component .price-column-holder .price-column--body {
  padding: 0 40px 0; }
  @media (min-width: 604px) {
    .price-component .price-column-holder .price-column--body {
      margin-top: 60px; } }

.price-component hr {
  border: 0;
  background: #e6e5e5; }

.pricing-table {
  display: table; }
  .pricing-table tr {
    display: table-row;
    width: 100%; }
    .pricing-table tr.title-row {
      background: #025091;
      border: 0; }
    .pricing-table tr td, .pricing-table tr th {
      padding: 1em;
      display: table-cell; }
    .pricing-table tr td {
      border-right: 1px solid #d4d4d4;
      border-bottom: 1px solid #d4d4d4; }
      .pricing-table tr td:first-child {
        border-left: 1px solid #d4d4d4; }

/*===================================================
PRICING MODULE
===================================================*/
.pricing-module {
  max-width: 992px;
  margin: 0 auto;
  font-family: "ProximaNova";
  padding: 0 15px; }
  @media screen and (min-width: 768px) {
    .pricing-module {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  .pricing-module .pricing-block {
    text-align: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #333333;
    background: #ffffff; }
    @media screen and (min-width: 768px) {
      .pricing-module .pricing-block {
        width: 48%; } }
    .pricing-module .pricing-block .pricing-title, .pricing-module .pricing-block .pricing-content {
      padding: 1em; }
    .pricing-module .pricing-block .pricing-title {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      margin: 0;
      width: 100%;
      display: block;
      border-bottom: 1px #d4d4d4 solid;
      color: #025091;
      font-size: 25px; }
      @media screen and (min-width: 768px) {
        .pricing-module .pricing-block .pricing-title {
          font-size: 34px; } }
    .pricing-module .pricing-block .pricing-content {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto; }
      .pricing-module .pricing-block .pricing-content .the-price {
        font-size: 40px; }
        @media screen and (min-width: 768px) {
          .pricing-module .pricing-block .pricing-content .the-price {
            font-size: 90px; } }
      .pricing-module .pricing-block .pricing-content .pricing-note {
        font-size: 16px; }
    .pricing-module .pricing-block:first-child {
      color: #025091;
      margin-bottom: 1em; }
      @media screen and (min-width: 768px) {
        .pricing-module .pricing-block:first-child {
          margin-right: 4%;
          margin-bottom: 0; } }
      .pricing-module .pricing-block:first-child .pricing-title {
        background: #025091;
        color: #ffffff;
        border-bottom: 1px solid #025091; }

/*===================================================
PRODUCT PRESENTATION
===================================================*/
.product-presentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .product-presentation .box {
    padding: 0.5em 0;
    border-bottom: 1px solid #35a4dd;
    border-right: 1px solid #35a4dd;
    width: 50%; }
    .product-presentation .box:nth-of-type(2n+1) {
      border-left: 1px solid #35a4dd; }
    .product-presentation .box:nth-of-type(-n+2) {
      border-top: 1px solid #35a4dd; }
    @media screen and (min-width: 992px) {
      .product-presentation .box {
        width: 25%;
        padding: 1em 0; }
        .product-presentation .box:nth-of-type(2n+1) {
          border-left: 0; }
        .product-presentation .box:nth-of-type(4n+1) {
          border-left: 1px solid #35a4dd; }
        .product-presentation .box:nth-of-type(-n+2) {
          border-top: 0; }
        .product-presentation .box:nth-of-type(-n+4) {
          border-top: 1px solid #35a4dd; } }
    @media screen and (min-width: 1200px) {
      .product-presentation .box {
        width: 20%; }
        .product-presentation .box:nth-of-type(4n+1) {
          border-left: 0; }
        .product-presentation .box:nth-of-type(5n+1) {
          border-left: 1px solid #35a4dd; }
        .product-presentation .box:nth-of-type(-n+4) {
          border-top: 0; }
        .product-presentation .box:nth-of-type(-n+5) {
          border-top: 1px solid #35a4dd; } }
    .product-presentation .box .box-logo {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      height: 100%; }
      .product-presentation .box .box-logo p {
        font-size: 18px;
        font-family: 'ProximaNova-Bold'; }
    .product-presentation .box .box-content {
      display: none;
      padding: 0.5em; }
    .product-presentation .box.active .box-content, .product-presentation .box:hover .box-content {
      display: block; }
    .product-presentation .box.active .box-logo, .product-presentation .box:hover .box-logo {
      display: none; }

/*===================================================
QUICK SIGNUP
===================================================*/
#quick-signup {
  background: #31a5de;
  bottom: 0;
  left: 0;
  padding: 0 0 10px;
  position: fixed;
  width: 100%;
  z-index: 10;
  min-height: 99px;
  display: none; }
  #quick-signup [class^="c-"] {
    position: relative; }
  #quick-signup .c-1:before {
    bottom: -90px;
    content: url(https://images.apps4.com/images/svg-website/azure-laptop.svg);
    left: -336px;
    position: absolute;
    width: 400px; }
  #quick-signup > .frame-table {
    position: relative;
    max-width: 1440px; }
  #quick-signup .hide-form {
    border: none;
    display: inline-block;
    position: absolute;
    right: 0px;
    width: 43px;
    height: 43px;
    line-height: 41px;
    text-align: center;
    color: #76c7ef;
    border-radius: 50%;
    font-size: 18px;
    font-family: "ProximaNova-Bold";
    top: 16px;
    background: none; }
    #quick-signup .hide-form:hover {
      cursor: pointer; }
  #quick-signup img {
    min-width: 384px;
    position: absolute;
    right: -53px;
    top: -70px; }
  #quick-signup h3 {
    color: #ffffff;
    font-family: "MuseoSans-300";
    font-size: 21px;
    margin: 21px 0 0 0;
    text-align: left; }
    #quick-signup h3 span {
      font-family: "MuseoSans-900";
      font-size: 21px;
      display: block;
      letter-spacing: -1px;
      text-transform: uppercase; }
    body.fr #quick-signup h3 {
      font-size: 20px;
      margin: 15px 0 0; }
  #quick-signup label {
    color: #ffffff;
    display: block;
    font-family: 'MuseoSans-700', arial, sans-serif;
    font-size: 12px;
    margin: 0 0 3px 0;
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 100%;
    text-transform: uppercase; }
    #quick-signup label:hover {
      cursor: pointer; }
  #quick-signup input {
    border: none;
    color: #025091;
    display: block;
    font-family: 'MuseoSans-300', arial, sans-serif;
    font-size: 16px;
    padding: 6px 16px;
    width: 100%; }
  #quick-signup .ghost-btn {
    border: 2px solid #ffffff;
    background: transparent;
    padding: 5px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "MuseoSans-900";
    position: relative;
    top: 20px; }
    #quick-signup .ghost-btn:hover {
      color: #81c346;
      background: #ffffff; }
  #quick-signup input::-webkit-input-placeholder {
    color: #8a8a8a; }
  #quick-signup input::-moz-placeholder {
    color: #8a8a8a; }
  #quick-signup input:-ms-input-placeholder {
    color: #8a8a8a; }
  #quick-signup input:-moz-placeholder {
    color: #8a8a8a; }

body.fr #quick-signup h3 span {
  font-size: 24px; }

@media only screen and (max-width: 1264px) {
  #quick-signup h3 {
    text-align: left;
    font-size: 18px;
    line-height: 26px; }
  #quick-signup h3 span {
    font-family: "MuseoSans-900";
    font-size: 22px;
    display: block;
    letter-spacing: -1px;
    line-height: 31px;
    text-transform: uppercase; }
  #quick-signup .c-20 {
    display: none; }
  #quick-signup .c-80 {
    width: 100%; } }

@media only screen and (max-width: 740px) {
  #quick-signup .c-3 {
    width: 100%;
    padding: .4em; }
  #quick-signup .orange-btn {
    margin-top: 10px; } }

@media only screen and (max-width: 580px) {
  #quick-signup {
    display: none; } }

/* ====================================================
   CLOUD QUICK SIDE SIGN UP
   ==================================================== */
.side-quick-signup {
  background: #ffffff;
  position: fixed;
  right: -450px;
  top: 75px;
  min-width: 375px;
  min-height: 500px;
  padding: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  max-width: 420px;
  z-index: 9;
  color: #025091;
  -webkit-transition: all 0.34s cubic-bezier(0.9, -0.01, 0.5, 1.14);
  transition: all 0.34s cubic-bezier(0.9, -0.01, 0.5, 1.14); }
  .side-quick-signup input::-webkit-input-placeholder {
    color: #D4D4D4; }
  .side-quick-signup input::-moz-placeholder {
    color: #D4D4D4; }
  .side-quick-signup input:-ms-input-placeholder {
    color: #D4D4D4; }
  .side-quick-signup input:-moz-placeholder {
    color: #D4D4D4; }

.side-quick-signup.is-active {
  right: 0; }

.side-quick-signup input[type] {
  width: 100%;
  border: 1px solid rgba(68, 68, 68, 0.19);
  min-height: 30px;
  border-radius: 5px;
  padding-left: 10px;
  font-size: 14px;
  color: #333333; }

.side-quick-signup label {
  display: block;
  font-size: 12px;
  margin-bottom: 0;
  font-family: 'MuseoSans-300';
  color: #333333; }

.inner--side-signup {
  background: #e4ecf4;
  min-height: 510px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 20px; }

.side-quick-signup #close {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -15px;
  background: #ffffff;
  height: 85px;
  width: 30px;
  line-height: 85px;
  text-align: center;
  color: #025091;
  border-radius: 5px; }

.side-quick-signup #close:hover {
  cursor: pointer; }

#cloud_side_form > [class^="c-"] {
  padding-right: 1em;
  padding-left: 0;
  padding-bottom: 0; }

.side-quick-signup .section-title {
  font-size: 32px;
  line-height: 36px; }

body.fr .side-quick-signup .section-title {
  font-size: 28px; }

.side-quick-signup .section-title span {
  font-size: 22px;
  line-height: 32px;
  text-transform: none;
  margin: 0; }

.side-quick-signup .blue-btn {
  margin-top: 15px;
  background: #7FCB15;
  -webkit-box-shadow: 0px 2px 0px #4e8f0d;
          box-shadow: 0px 2px 0px #4e8f0d; }

.side-quick-signup .blue-btn:hover {
  background-color: #4e8f0d;
  -webkit-box-shadow: 0px 2px 0px #7FCB15;
          box-shadow: 0px 2px 0px #7FCB15; }

#print-verification {
  color: #e30613;
  font-size: 12px;
  font-family: 'ProximaNova-Bold'; }

.inner--arrow {
  display: inline-block;
  -webkit-transform: scale(0.2, 1);
          transform: scale(0.2, 1);
  font-size: 65px;
  font-family: 'MuseoSans-100';
  position: relative;
  left: -2px; }

/* ====================================================
   QUICK SIGNUP
   ==================================================== */
/**
 *
 * CUSTOMER LOGIN PAGE STYLYING
 *
 * This style has been created to be used for
 * all sticky footers with Marketo Forms.
 * It has a fixed position on the bottom page
 * while hidding the image for small viewports
 *
 * @project   Fixed Sticky Footer Quick Sign Up
 * @version   0.0.2
 * @package   html-css
 * @author    Gustavo Felisberto
 * @copyright 2016 by apps4
 *
 * @colordef  $primary
 * @colordef  $red
 * @colordef  $white
 *
 *
*/
.random-footer {
  display: none; }

.sticky-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 145px;
  background: #085494;
  z-index: 9;
  color: #ffffff; }
  .sticky-footer img {
    bottom: 0px;
    max-width: 150px;
    position: absolute; }
  .sticky-footer .copy {
    display: inline-block;
    vertical-align: middle;
    width: 62%;
    /**/
    position: relative;
    left: -30px; }
  .sticky-footer .call-to-action {
    display: inline-block;
    vertical-align: middle;
    width: 20%; }
  .sticky-footer h4 {
    margin-bottom: 0px;
    font-size: 38px;
    margin-top: 25px;
    font-family: 'MuseoSans-700';
    letter-spacing: .5px; }
  .sticky-footer p {
    font-family: 'MuseoSans-300';
    font-size: 22px; }
  .sticky-footer .blue-btn {
    background-color: #e30613;
    -webkit-box-shadow: 0px 4px 0px #c00d0d;
            box-shadow: 0px 4px 0px #c00d0d;
    padding: 15px;
    /**/
    display: block;
    text-align: center; }
  .sticky-footer .blue-btn:hover {
    background-color: #c00d0d;
    -webkit-box-shadow: 0px 4px 0px #e30613;
            box-shadow: 0px 4px 0px #e30613; }
  .sticky-footer .blue-btn:active {
    position: relative;
    top: 1px;
    color: #ffffff; }

@media only screen and (max-width: 1192px) {
  .sticky-footer img {
    display: none; } }

@media only screen and (max-width: 948px) {
  .sticky-footer h4 {
    font-size: 28px; }
  .sticky-footer p {
    font-size: 18px;
    padding: 0 !important; } }

@media only screen and (max-width: 733px) {
  .sticky-footer {
    display: none; } }

/*===================================================
QUOTES
===================================================*/
blockquote p {
  font-family: "ProximaNova";
  font-size: 20px;
  line-height: 32px;
  margin: 30px;
  font-weight: normal;
  color: #333333; }
  blockquote p:after {
    content: close-quote;
    font-size: 36px;
    padding: 10px;
    color: #333333; }
  blockquote p:before {
    content: open-quote;
    font-size: 36px;
    padding: 10px;
    color: #333333; }

cite {
  display: block;
  margin: 35px 0 0;
  font-size: 18px; }

.ballon {
  padding: 20px 30px;
  border-radius: 45px;
  position: relative;
  font-size: 18px; }
  .ballon > p ~ p {
    font-size: 16px; }
  .ballon.light-bg {
    background: #e4ecf4;
    position: relative; }
    .ballon.light-bg:before {
      content: " ";
      background: url("https://images.apps4.com/images/svg-website/bubble-speech-02.svg");
      width: 19px;
      height: 18px;
      position: absolute;
      left: 5px;
      bottom: 0px; }
  .ballon.dark-bg {
    background: #025091;
    position: relative; }
    .ballon.dark-bg:before {
      content: "";
      background: url("https://images.apps4.com/images/svg-website/bubble-speech-01.svg");
      width: 19px;
      height: 18px;
      position: absolute;
      left: 5px;
      bottom: 0px; }

.big-quote {
  background: #ffffff;
  padding: 2rem;
  font-size: 2rem;
  font-family: 'ProximaNova-SemiboldIt';
  position: relative;
  color: #025091;
  border-radius: 50px;
  width: 100%;
  margin-bottom: 40px; }
  .big-quote p {
    font-family: 'ProximaNova-SemiboldIt'; }
  .big-quote span.prequote, .big-quote span.postquote {
    width: 100%;
    display: block; }
  .big-quote:after {
    content: '';
    position: absolute;
    left: 5%;
    bottom: 0;
    display: block;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 30px solid transparent;
    border-top: 40px solid #ffffff; }

/*===================================================
SCREENSHOT MODULE
===================================================*/
.screenshot-element {
  margin: 2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media screen and (min-width: 768px) {
    .screenshot-element {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  @media screen and (min-width: 768px) {
    .screenshot-element .screenshot-main-col {
      width: 70%; } }
  .screenshot-element .screenshot-main-col img.the-screenshot {
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3);
            box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3); }
  .screenshot-element .screenshot-link {
    padding: 0 1em;
    display: block;
    text-decoration: none;
    color: #35a4dd; }
    .screenshot-element .screenshot-link.active {
      padding: 1em;
      margin-bottom: 0.5em;
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1;
      text-decoration: none;
      background: #ffffff;
      -webkit-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3);
              box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3);
      border-radius: 10px; }
      @media screen and (min-width: 768px) {
        .screenshot-element .screenshot-link.active {
          -webkit-box-ordinal-group: inherit;
              -ms-flex-order: inherit;
                  order: inherit; } }
    .screenshot-element .screenshot-link .section-title {
      color: #35a4dd;
      font-size: 20px !important;
      font-family: 'MuseoSans-700';
      padding: 0;
      text-align: left; }
    .screenshot-element .screenshot-link .screenshot-content p {
      text-align: left;
      font-size: 14px;
      line-height: 16px; }
  .screenshot-element .screenshot-side-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1em; }
    @media screen and (min-width: 768px) {
      .screenshot-element .screenshot-side-col {
        width: 30%;
        padding-left: 2em;
        margin-top: 0; } }
  .screenshot-element:first-child {
    margin-top: 3em; }
  .screenshot-element p {
    color: #0b0b0b;
    font-family: 'MuseoSans-300'; }
  .screenshot-element .icon {
    max-width: 130px;
    margin-bottom: 2em; }

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px); }

.search_form_container {
  position: relative; }
  .search_form_container:after {
    content: " ";
    clear: both;
    width: 100%;
    display: block; }
  .search_form_container .search-field {
    width: 100%;
    float: left;
    text-align: left;
    border: none;
    color: #333333;
    float: left;
    font-family: 'ProximaNova', Arial, sans-serif;
    font-size: 13px;
    line-height: 18px;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    -webkit-appearance: none;
    color: #025091; }
    .search_form_container .search-field::-webkit-input-placeholder {
      color: #333333;
      font-family: 'MuseoSans-300', Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      font-size: 13px; }
    .search_form_container .search-field:-moz-placeholder {
      color: #333333;
      font-family: 'MuseoSans-300', Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      font-size: 13px; }
    .search_form_container .search-field::-moz-placeholder {
      color: #333333;
      font-family: 'MuseoSans-300', Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      font-size: 13px; }
    .search_form_container .search-field:-ms-input-placeholder {
      color: #333333;
      font-family: 'MuseoSans-300', Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      font-size: 13px; }
  .search_form_container input[type="submit"] {
    border: none;
    background-image: url(https://images.apps4.com/images/svg-website/loupe.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 63%;
    background-color: transparent;
    height: 15px;
    width: 15px;
    color: transparent;
    text-indent: 999px;
    overflow: hidden;
    margin-top: 0;
    float: right;
    padding: 11px;
    position: absolute;
    right: 10px; }
    .search_form_container input[type="submit"]:hover {
      opacity: 0.85; }

.search-result {
  border-radius: 49px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem; }

/*====================================================
SEARCH MODULE
====================================================*/
/*
//NOT USED ANYMORE
.apps4-search {
    position: relative;
    input.s-search {
        border: 0;
        padding: 5px 10px;
        border-radius: 49px;
        min-width: 100%;
        font-size: 16px;
        display: inline-block;
        color: $secondary;
        font-family: "ProximaNova", arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        -webkit-appearance: none; // safari
    }
    input.submit-search-footer {
        font-family: "MuseoSans-500", arial, sans-serif;
        display: inline-block;
        border: 0;
        padding: 12px;
        background: $secondary;
        color: $white;
        border-radius: 49px;
        position: absolute;
        top: 6px;
        right: 7px;
        transition: all 0.25s ease 0s;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        &:hover {
            cursor: pointer;
            background: $primary;
        }
    }
    input.s-search:focus {
        color: $secondary;
        font-family: "ProximaNova", arial, sans-serif;
        -webkit-font-smoothing: antialiased;
    }
}

::-webkit-input-placeholder {
    color: $secondary;
    font-family: "MuseoSans-300", arial, sans-serif;
    padding-left: 10px;
    -webkit-font-smoothing: antialiased;
}

:-moz-placeholder {
    color: $primary;
    font-family: "MuseoSans-300", arial, sans-serif;
    padding-left: 10px;
    -webkit-font-smoothing: antialiased;
}

::-moz-placeholder {
    color: $primary;
    font-family: "MuseoSans-300", arial, sans-serif;
    padding-left: 10px;
    -webkit-font-smoothing: antialiased;
}

:-ms-input-placeholder {
    color: $secondary;
    font-family: "MuseoSans-300", arial, sans-serif;
    padding-left: 10px;
    -webkit-font-smoothing: antialiased;
}


.social-networks {
    background: $bg-dark;
    padding: 10px 0;
}

.social-networks #breadcrumbs {
    font-family: 'ProximaNova-bold', arial, sans-serif;
    font-size: 14px;
    color: $primary;
    text-shadow: 0 1px 0 $white;
    position: relative;
    top: 5px;
}

.social-networks #breadcrumbs a {
    color: rgba($primary, 0.9);
    &:hover {
        color: rgba($primary, 1);
    }
}

.social-networks #breadcrumbs span:first-child {
    margin: 0px 0px 0px 5px;
}

.social-networks #breadcrumbs span:first-child:before {
    content: "\f041";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: $primary;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 12px;
    left: 2px;
}
*/
/*===================================================
3. SEARCH MAIN MENU
====================================================*/
/*
.main-search {
    .search_form_container {
        background: #fcfcfc;
        padding: 2px 10px;
        margin: 13px 10px 0px 0px;
        width: 125px;
        float: right;
    }
}

.main-search {
    padding: 0em;
}
*/
/*===================================================
SKU MODULE
===================================================*/
.sku-module .h--align {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 40%; }

.sku-module .c-40, .sku-module .c-60 {
  width: 100%; }

@media screen and (min-width: 768px) {
  .sku-module .c-40 {
    width: 40%; } }

@media screen and (min-width: 768px) {
  .sku-module .c-60 {
    width: 60%; } }

.sku-block {
  text-align: center;
  list-style: none; }
  .sku-block li {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    min-width: 150px;
    min-height: 100px;
    margin: 10px;
    position: relative;
    -webkit-transition: all .34s ease-in;
    transition: all .34s ease-in; }
    .sku-block li:hover {
      cursor: pointer; }
    .sku-block li.active {
      background: #6ac212; }
      .sku-block li.active:before {
        display: none; }
    .sku-block li:after {
      content: '';
      border-right: 28px solid transparent;
      border-top: 28px solid #6ac212;
      position: absolute;
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
      top: 4px;
      right: -4px; }
    .sku-block li:before {
      content: '+';
      position: absolute;
      top: -5px;
      right: 3px;
      z-index: 9;
      color: #ffffff;
      font-size: 12px; }
  .sku-block.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 1em; }
    @media screen and (min-width: 992px) {
      .sku-block.flex {
        margin-top: 0; } }
    .sku-block.flex li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      min-height: 8vw;
      padding: 0; }
      @media screen and (min-width: 992px) {
        .sku-block.flex li {
          width: 30%; } }
      .sku-block.flex li a.sku-click {
        display: block;
        position: inherit;
        left: inherit;
        padding: 6%; }
        @media screen and (min-width: 992px) {
          .sku-block.flex li a.sku-click {
            padding: 16%; } }
  .sku-block.with-icon svg {
    display: block;
    margin: 0 auto 0.5em auto;
    height: 35px; }
    .sku-block.with-icon svg polygon, .sku-block.with-icon svg rect {
      fill: #35a4dd; }
  .sku-block.with-icon li {
    margin: 2px; }
    .sku-block.with-icon li.active a svg polygon, .sku-block.with-icon li.active a svg rect, .sku-block.with-icon li.active a svg path {
      fill: #ffffff; }
  .sku-block.blue-sku li {
    background: #ffffff;
    color: #3dabe8; }
    .sku-block.blue-sku li.active {
      background: #025091; }
    .sku-block.blue-sku li:after {
      border-top: 20px solid #025091; }
    .sku-block.blue-sku li a.sku-click {
      color: #3dabe8; }
    .sku-block.blue-sku li.active a.sku-click {
      color: #ffffff; }

.sku-click {
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  left: 0;
  font-family: 'MuseoSans-700';
  font-size: 17.5px;
  color: #ffffff;
  line-height: normal; }
  .sku-click.single-line {
    line-height: 100px; }
  .sku-click.double-line {
    top: 28px; }
  .sku-click:focus, .sku-click:hover {
    color: #ffffff; }

.c-40 [class^="sku-"] {
  display: none; }

.c-40 [class^="sku-"].active {
  display: block; }

.keep-this-hidden.active {
  display: block; }

.keep-this-hidden {
  display: none;
  list-style: none;
  text-align: left; }

/*===================================================
Social links - with new png sprite (Used in footer)
===================================================*/
.social-links {
  min-width: 265px;
  display: inline-block;
  margin-top: 9px; }
  .social-links li {
    display: inline;
    padding: 0 40px 0 0; }
    .social-links li a {
      background: url("https://images.apps4.com/images/svg-website/social_links_vector.png") no-repeat;
      width: 35px;
      position: absolute;
      text-indent: -30000px;
      height: 35px;
      -webkit-transition: none;
      transition: none; }
      .social-links li a.apps4-twitter {
        background-position: 0px -35px; }
        .social-links li a.apps4-twitter:hover {
          background-position: 0px 0px; }
      .social-links li a.apps4-linkedin {
        background-position: -35px -35px; }
        .social-links li a.apps4-linkedin:hover {
          background-position: -35px 0px; }
      .social-links li a.apps4-facebook {
        background-position: -70px -35px; }
        .social-links li a.apps4-facebook:hover {
          background-position: -70px 0px; }
      .social-links li a.apps4-instagram {
        background-position: -104px -35px; }
        .social-links li a.apps4-instagram:hover {
          background-position: -104px 0px; }
      .social-links li a.apps4-youtube {
        background-position: -139px -35px; }
        .social-links li a.apps4-youtube:hover {
          background-position: -139px 0px; }
      .social-links li a.apps4-glassdoor {
        background-position: -174px -35px; }
        .social-links li a.apps4-glassdoor:hover {
          background-position: -174px 0px; }

/*===================================================
Steps
===================================================*/
.intro-list {
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 20px;
  color: #6dabe4; }

.intro-list span {
  font-family: "MuseoSans-700", arial, sans-serif;
  font-size: 17px;
  color: #ffffff;
  display: block; }

.performance-index {
  font-size: 22px; }

.white-bg .show-building-tabs {
  display: block; }
  @media screen and (min-width: 992px) {
    .white-bg .show-building-tabs {
      display: none; } }

@media screen and (max-width: 991px) {
  .show-building-tabs {
    display: initial; } }

.hide-building-tabs {
  display: none; }
  @media screen and (min-width: 992px) {
    .hide-building-tabs {
      display: block; } }

/* ====================================================
TABLES
==================================================== */
.table-fade {
  position: relative; }
  @media (max-width: 1200px) {
    .table-fade:after {
      position: absolute;
      display: block;
      right: 0px;
      width: 35px;
      height: 100%;
      content: "";
      top: 0px;
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.3)));
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 100%); } }

.flat-table-o365,
.flat-table-cloud {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .flat-table-o365 .description,
  .flat-table-cloud .description {
    font-size: 15px;
    font-family: "ProximaNova";
    color: #333333;
    text-align: left; }
  .flat-table-o365.flat-table-cloud tfoot td:first-of-type,
  .flat-table-cloud.flat-table-cloud tfoot td:first-of-type {
    height: 50px;
    padding: 0; }
  .flat-table-o365 tr,
  .flat-table-cloud tr {
    border-bottom: 1px solid #d9d9d9; }
  .flat-table-o365 td ~ td,
  .flat-table-cloud td ~ td {
    background: transparent;
    width: 13%; }
  .flat-table-o365 tbody tr td,
  .flat-table-o365 tfoot tr td,
  .flat-table-cloud tbody tr td,
  .flat-table-cloud tfoot tr td {
    padding: 15px 20px;
    color: #025091; }
    .flat-table-o365 tbody tr td:first-of-type,
    .flat-table-o365 tfoot tr td:first-of-type,
    .flat-table-cloud tbody tr td:first-of-type,
    .flat-table-cloud tfoot tr td:first-of-type {
      font-family: "ProximaNova-Bold";
      font-weight: normal;
      color: #025091;
      font-size: 16px;
      line-height: 16px;
      margin: 0px;
      width: 20%;
      text-align: left; }
    .flat-table-o365 tbody tr td:first-child,
    .flat-table-o365 tfoot tr td:first-child,
    .flat-table-cloud tbody tr td:first-child,
    .flat-table-cloud tfoot tr td:first-child {
      width: 20%; }
    .flat-table-o365 tbody tr td:nth-child(2),
    .flat-table-o365 tfoot tr td:nth-child(2),
    .flat-table-cloud tbody tr td:nth-child(2),
    .flat-table-cloud tfoot tr td:nth-child(2) {
      width: 40%; }
  .flat-table-o365 tbody tr:nth-child(even),
  .flat-table-cloud tbody tr:nth-child(even) {
    background: transparent; }
  .flat-table-o365 tbody tr:nth-child(odd),
  .flat-table-cloud tbody tr:nth-child(odd) {
    background: none; }
  .flat-table-o365 tbody tr:first-child td,
  .flat-table-cloud tbody tr:first-child td {
    height: 135px; }
  .flat-table-o365 tbody tr td:nth-child(2n+2),
  .flat-table-cloud tbody tr td:nth-child(2n+2) {
    background: transparent; }
  .flat-table-o365 thead,
  .flat-table-o365 tfoot,
  .flat-table-cloud thead,
  .flat-table-cloud tfoot {
    color: #025091;
    background: transparent; }
    .flat-table-o365 thead tr td,
    .flat-table-o365 tfoot tr td,
    .flat-table-cloud thead tr td,
    .flat-table-cloud tfoot tr td {
      padding: 15px 20px;
      font-family: "ProximaNova-bold", arial, sans-serif;
      text-transform: none;
      font-size: 14px;
      font-weight: normal;
      letter-spacing: -.3px;
      color: #025091;
      margin-bottom: 0px;
      line-height: 18px;
      text-align: left; }
      .flat-table-o365 thead tr td:nth-child(even),
      .flat-table-o365 tfoot tr td:nth-child(even),
      .flat-table-cloud thead tr td:nth-child(even),
      .flat-table-cloud tfoot tr td:nth-child(even) {
        background: transparent; }
      .flat-table-o365 thead tr td:nth-child(odd),
      .flat-table-o365 tfoot tr td:nth-child(odd),
      .flat-table-cloud thead tr td:nth-child(odd),
      .flat-table-cloud tfoot tr td:nth-child(odd) {
        background: transparent; }
  .flat-table-o365 tfoot tr td,
  .flat-table-cloud tfoot tr td {
    height: 175px; }
  .flat-table-o365.three-cols tbody td:not(:first-of-type),
  .flat-table-cloud.three-cols tbody td:not(:first-of-type) {
    width: 24%; }
  .flat-table-o365 .regular-text, .flat-table-o365 #newsroom p, #newsroom .flat-table-o365 p,
  .flat-table-cloud .regular-text,
  .flat-table-cloud #newsroom p,
  #newsroom .flat-table-cloud p {
    margin-bottom: 0px;
    line-height: 20px; }
  .flat-table-o365 small,
  .flat-table-cloud small {
    font-family: 'ProximaNova';
    display: block;
    color: #333333; }

/*
.flat-table-o365 .blue-btn,
.flat-table-cloud .blue-btn {
	background: $green;
	padding: 3px 15px;
	color: $white;
	border: none;
	font-family: "ProximaNova-Bold", arial, sans-serif;
	font-size: 14px;
	transition: all 0.14s ease 0s;
	margin: 10px 0 0 0;
	letter-spacing: -.5px;
}

.o365--pricing {
	font-size: 30px;
	letter-spacing: -2px;
	font-family: "ProximaNova";
	margin-bottom: 0px;
}
*/
.holder-table {
  width: 100%;
  overflow-y: auto;
  _overflow: auto;
  margin: 0 0 1em; }

.resell-cloud-compare .cell {
  position: relative;
  font-family: 'MuseoSans-300';
  font-size: 16.5px;
  line-height: 2rem; }
  .resell-cloud-compare .cell p {
    margin: 0; }
    .resell-cloud-compare .cell p + p {
      font-size: 16px; }
  .resell-cloud-compare .cell.brand {
    min-height: 60px; }
  .resell-cloud-compare .cell.ssd {
    min-height: 75px; }
  .resell-cloud-compare .cell.awwards {
    min-height: 110px; }
  .resell-cloud-compare .cell.redundancy {
    min-height: 130px; }
  .resell-cloud-compare .cell.location {
    min-height: 110px; }
  .resell-cloud-compare .cell.support {
    min-height: 85px; }
  .resell-cloud-compare .cell.specialist {
    min-height: 100px; }
  .resell-cloud-compare .cell.discount {
    min-height: 80px; }
  .resell-cloud-compare .cell.migration {
    min-height: 80px; }

body.fr .cell.ssd {
  min-height: 95px; }

body.fr .cell.support {
  min-height: 110px; }

body.fr .cell.specialist {
  min-height: 140px; }

.hv__center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 15px; }

.apps4-column,
.rackspace-column,
.amazon-column,
.intermedia-column {
  padding: 20px 0; }

.apps4-column {
  background: #025091;
  color: #ffffff; }

.rackspace-column {
  border: 1px solid #da071f; }

.amazon-column {
  border: 1px solid #f7a810; }

.intermedia-column {
  border: 1px solid #9dbb33; }

.hover-state:hover p,
.hover-state:hover h4 {
  color: #3dabe8 !important; }

.flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .flex-content .description {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    -ms-flex-item-align: middle;
        -ms-grid-row-align: middle;
        align-self: middle;
    text-align: left; }
    .flex-content .description.section {
      -webkit-box-flex: 5;
          -ms-flex-positive: 5;
              flex-grow: 5; }
  .flex-content .title {
    padding: 20px;
    -ms-flex-item-align: middle;
        -ms-grid-row-align: middle;
        align-self: middle; }

.three-plans-table {
  width: 100%; }
  .three-plans-table tbody tr,
  .three-plans-table thead tr {
    border-bottom: 1px solid #333333; }
  .three-plans-table thead td {
    padding: 15px 0; }
  .three-plans-table tr {
    border-bottom: 1px solid #dae4ef;
    height: 45px; }
  .three-plans-table tr > td:nth-child(2n+2) {
    background: #e4ecf4; }
  .three-plans-table tr td:nth-child(1) {
    text-align: left;
    width: 35%; }
  @media only screen and (max-width: 600px) {
    .three-plans-table tr td:nth-child(1) {
      width: 25%; } }
  .three-plans-table tr td:nth-child(1) p {
    padding-left: 20px;
    margin: 0; }
  .three-plans-table td[colspan] {
    background: white; }
  .three-plans-table table {
    width: 1140px; }

/*===================================================
TABS MODULE
====================================================*/
ul.tabs {
  padding: 0px;
  list-style: none;
  text-align: center;
  font-size: 0;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto; }
  ul.tabs li {
    background: none;
    display: inline-block;
    cursor: pointer;
    padding: 20px 40px;
    font-family: "MuseoSans-500";
    color: #025091;
    font-size: 16px;
    line-height: 21px;
    text-align: left; }
    @media screen and (min-width: 768px) {
      ul.tabs li {
        min-width: 200px; } }
    ul.tabs li.current {
      background: #d4d4d4;
      border-left: 2px solid #025091;
      border-right: 2px solid #025091; }

.tab-content {
  display: none;
  background: #d4d4d4;
  padding: 15px; }

.tab-content.light-blue,
ul.tabs.light-blue li.current-light-blue {
  background: #d7e2ee !important; }

.tab-content.current {
  display: inherit; }

#tabs-bar ul {
  display: block;
  list-style: none;
  text-align: center;
  margin: 0px;
  border-bottom: 2px solid #025091; }
  #tabs-bar ul li {
    list-style: none;
    display: inline-block;
    padding: 0px 100px 0px 0px;
    position: relative; }

#tabs-bar .last-item {
  padding-right: 0px; }

#tab-building-nav li a {
  display: inline-block;
  position: relative; }
  #tab-building-nav li a.current:after {
    content: " ";
    background: #326295;
    border: 2px solid #025091;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    left: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    z-index: 9;
    bottom: -41px;
    margin-left: -7px; }

#tabs-bar ul {
  border-bottom: 2px solid #6dabe4; }
  #tabs-bar ul li {
    padding: 0px 48px 0px 0px; }

#tabs-content-wrap {
  padding: 10px;
  margin-top: 8px; }
  #tabs-content-wrap ul {
    display: block;
    list-style: none; }
    #tabs-content-wrap ul li {
      width: 100%;
      list-style: none;
      display: block;
      list-style: none; }
      #tabs-content-wrap ul li:not(:first-child) {
        display: none; }

.tab-building-content {
  border-radius: 2px; }

/*===================================================
TESTIMONIALS
====================================================*/
.testimonials .wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 10px; }
  .testimonials .wrapper--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

.testimonials a {
  text-decoration: none;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%; }
  @media (min-width: 768px) {
    .testimonials a {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 50%;
              flex: 1 1 50%; } }
  .testimonials a:hover {
    text-decoration: none;
    -webkit-transform: scale(1.03);
            transform: scale(1.03); }

.testimonials .testimonial {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (min-width: 768px) {
    .testimonials .testimonial {
      -ms-flex-wrap: unset;
          flex-wrap: unset;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 calc(50% - 20px);
              flex: 0 1 calc(50% - 20px);
      margin-right: 20px; } }
  .testimonials .testimonial:last-of-type,
  .testimonials .testimonial :nth-last-child(2) {
    margin-bottom: 0; }

.testimonials .triangle {
  position: relative;
  padding: 15px;
  margin: 1em 0 3em;
  color: #ffffff;
  background: #025091;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  min-height: 145px; }
  @media (min-width: 768px) {
    .testimonials .triangle {
      -ms-flex-wrap: unset;
          flex-wrap: unset; } }
  .testimonials .triangle p {
    margin: 0;
    text-align: center; }
    @media (min-width: 768px) {
      .testimonials .triangle p {
        text-align: left; } }
  .testimonials .triangle.triangle--right:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 25%;
    border-width: 35px 0 0 60px;
    border-style: solid;
    border-color: #025091 transparent;
    display: block;
    width: 0; }
  .testimonials .triangle img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    max-width: initial; }
    @media (min-width: 768px) {
      .testimonials .triangle img {
        width: 80px;
        height: 80px; } }
  .testimonials .triangle .thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 768px) {
      .testimonials .triangle .thumb {
        padding-right: 20px; } }
  .testimonials .triangle .quote {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
    .testimonials .triangle .quote p {
      font-size: 16px; }
      @media (min-width: 768px) {
        .testimonials .triangle .quote p {
          font-size: 17.5px; } }
      .testimonials .triangle .quote p:not(:first-of-type) {
        color: #3dabe8;
        font-family: 'Proxima Nova SemiBold';
        font-style: italic;
        font-size: 16px;
        line-height: 16px;
        margin-top: 10px; }

/* ====================================================
   THUMB HOLDER MODULE
==================================================== */
.form-thumbnail .section-title {
  text-align: left; }

.form-thumbnail img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 100%;
  bottom: 0px; }
  @media screen and (min-width: 768px) {
    .form-thumbnail img {
      width: 330px; } }

.form-thumbnail .image-left-thumb, .form-thumbnail .image-right-thumb {
  position: absolute;
  display: none; }
  @media screen and (min-width: 768px) {
    .form-thumbnail .image-left-thumb, .form-thumbnail .image-right-thumb {
      display: block; } }

.form-thumbnail .image-left-thumb {
  left: -65px;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left; }

.form-thumbnail .image-right-thumb {
  right: -65px;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right; }

.form-thumbnail .image-center-thumb {
  z-index: 3;
  bottom: -15px; }

.form-thumbnail .thumb-holder {
  position: relative;
  width: 100%;
  margin: 55px auto 0; }
  @media screen and (min-width: 768px) {
    .form-thumbnail .thumb-holder {
      width: 330px;
      height: 400px; } }

@media (max-width: 50em) {
  .form-thumbnail .c-40 {
    width: 100%; }
  .form-thumbnail .c-60 {
    width: 100%;
    text-align: center; }
  .form-thumbnail .section-title {
    text-align: center; } }

.tiles-menu {
  text-align: center; }
  .tiles-menu ul {
    font-size: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .tiles-menu ul li {
      font-size: 18px;
      list-style: none;
      display: inline-block;
      -ms-flex-preferred-size: calc(50% - 2px);
          flex-basis: calc(50% - 2px); }
      .tiles-menu ul li:nth-of-type(2n+1) {
        border-left: 1px solid #35a4dd; }
      @media screen and (min-width: 992px) {
        .tiles-menu ul li {
          -ms-flex-preferred-size: calc(33.333333% - 2px);
              flex-basis: calc(33.333333% - 2px); }
          .tiles-menu ul li:nth-of-type(3n+1) {
            border-left: 1px solid #35a4dd; } }
      @media screen and (min-width: 992px) {
        .tiles-menu ul li {
          -ms-flex-preferred-size: 16.666666%;
              flex-basis: 16.666666%;
          -ms-flex-preferred-size: calc(16.666666% - 2px);
              flex-basis: calc(16.666666% - 2px); }
          .tiles-menu ul li:first-child {
            border-left: 1px solid #35a4dd; } }
      .tiles-menu ul li a {
        text-align: center;
        color: #ffffff;
        border-top: 1px solid #35a4dd;
        border-right: 1px solid #35a4dd;
        border-bottom: 1px solid #35a4dd;
        padding: 0.5em 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        line-height: 2rem;
        font-family: 'ProximaNova-Bold';
        height: inherit;
        min-height: 3.125em; }
        @media screen and (min-width: 576px) {
          .tiles-menu ul li a {
            height: 8vw; } }
        @media screen and (min-width: 768px) {
          .tiles-menu ul li a {
            padding: 1em;
            height: 5vw; } }
        @media screen and (min-width: 1200px) {
          .tiles-menu ul li a {
            height: 4vw;
            line-height: normal; } }
        .tiles-menu ul li a.toggled {
          background: #35a4dd; }

.tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #ffffff;
  margin-top: 2em;
  font-size: 18px;
  font-family: 'ProximaNova-Bold'; }
  .tiles .tile {
    -ms-flex-preferred-size: calc(50% - 2px);
        flex-basis: calc(50% - 2px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-right: 1px solid #35a4dd;
    border-bottom: 1px solid #35a4dd;
    padding: 0.5em 0; }
    .tiles .tile .text {
      display: block;
      margin-top: 0.5em;
      font-family: inherit; }
    .tiles .tile:nth-of-type(2n+1) {
      border-left: 1px solid #35a4dd; }
    .tiles .tile:nth-of-type(-n+2) {
      border-top: 1px solid #35a4dd; }
    @media screen and (min-width: 992px) {
      .tiles .tile {
        -ms-flex-preferred-size: calc(25% - 2px);
            flex-basis: calc(25% - 2px);
        padding: 2.5em 0; }
        .tiles .tile:nth-of-type(2n+1) {
          border-left: 0; }
        .tiles .tile:nth-of-type(4n+1) {
          border-left: 1px solid #35a4dd; }
        .tiles .tile:nth-of-type(-n+2) {
          border-top: 0; }
        .tiles .tile:nth-of-type(-n+4) {
          border-top: 1px solid #35a4dd; } }
    @media screen and (min-width: 1200px) {
      .tiles .tile {
        -ms-flex-preferred-size: calc(20% - 2px);
            flex-basis: calc(20% - 2px); }
        .tiles .tile:nth-of-type(4n+1) {
          border-left: 0; }
        .tiles .tile:nth-of-type(5n+1) {
          border-left: 1px solid #35a4dd; }
        .tiles .tile:nth-of-type(-n+4) {
          border-top: 0; }
        .tiles .tile:nth-of-type(-n+5) {
          border-top: 1px solid #35a4dd; } }
    .tiles .tile.toggled {
      background: #35a4dd;
      border: 1px solid #ffffff; }

/*===================================================
TOGGLE PLANS
===================================================*/
.main-text:hover {
  cursor: pointer; }

.content-toggle {
  display: none;
  background-color: #ffffff;
  overflow: auto;
  padding: 1em;
  text-align: left; }
  .content-toggle.default-toggle {
    display: block; }
  .content-toggle .c-50 {
    padding: 1em; }
    .content-toggle .c-50 h3 {
      font-family: "MuseoSans-500", arial, sans-serif;
      font-size: 24px;
      color: #025091;
      font-weight: normal;
      letter-spacing: -1px;
      display: inline-block;
      margin: 0px; }
      @media (max-width: 800px) {
        .content-toggle .c-50 h3 {
          float: none; } }
    .content-toggle .c-50 ul {
      padding-left: 15px;
      list-style: none; }
    .content-toggle .c-50 .all-features {
      float: right; }
      @media (max-width: 800px) {
        .content-toggle .c-50 .all-features {
          float: left;
          margin-top: 10px; } }
  .content-toggle .logo-list {
    margin-right: 5px;
    min-height: inherit; }

.toggle_plans {
  background: #ffffff;
  padding: 0px 10px 0px 10px;
  position: relative;
  min-height: 215px; }
  .toggle_plans h3 {
    font-family: "MuseoSans-700", arial, sans-serif;
    font-size: 20px;
    color: #025091;
    font-weight: normal;
    letter-spacing: -1px;
    padding: 20px 0px 10px;
    margin: 0px; }
  .toggle_plans p {
    padding: 10px 20px; }
  .toggle_plans.active:after {
    content: " ";
    position: absolute;
    width: 0px;
    height: 0px;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-top: 25px solid #ffffff;
    margin-left: -45px;
    left: 50%;
    bottom: -25px; }

.toggle--pricing {
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 30px;
  color: #333333;
  font-weight: normal;
  letter-spacing: -1px;
  padding: 0px 0px 15px; }

.pricing-combo div {
  float: left;
  margin: 30px 30px 0px 0px; }

.pricing-combo .toggle--pricing {
  line-height: 46px;
  font-size: 42px;
  letter-spacing: -2px;
  padding-bottom: 0px;
  margin-bottom: 0px; }

.best--toggle {
  background: #3dabe8;
  font-family: "MuseoSans-900", arial, sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin: -42px auto 0;
  position: relative;
  padding: 10px 0px; }

.logo-list:first-child {
  margin-left: 20px; }

.toggle--mobile-version {
  display: none; }

.triangle-best-offer {
  position: absolute;
  right: 0px;
  z-index: 9;
  text-align: right;
  display: none; }
  .triangle-best-offer p {
    position: absolute;
    right: 20px;
    z-index: 10;
    color: #ffffff;
    font-family: "MuseoSans-700";
    letter-spacing: -1px;
    font-size: 16px;
    line-height: 16px;
    top: 8px;
    text-align: center; }
    .triangle-best-offer p:after {
      width: 0px;
      height: 0px;
      border-bottom: 85px solid transparent;
      border-left: 85px solid transparent;
      border-top: 85px solid #e30613;
      content: "";
      top: 83px;
      position: relative;
      right: 11px; }

@media (max-width: 37.75em) {
  .content-toggle > .c-50 {
    width: 100%; }
  .content-toggle h3 {
    display: block;
    float: none; }
  .content-toggle .all-features {
    margin-left: 0px; }
  .content-toggle .c-50 > ul {
    padding-left: 0px; }
  .logo-list:first-child {
    margin-left: 0px; }
  .content-toggle .logo-list {
    margin-right: -10px;
    min-height: inherit;
    margin-top: 10px;
    margin-bottom: 0px; } }

@media (max-width: 50em) {
  .toggle--desktop-version {
    display: block; }
  .toggle--mobile-version {
    display: none; }
  .content-toggle > .c-50 {
    width: 100%; }
  .toggle_plans.active:after {
    display: none; }
  .best--toggle {
    display: none; }
  .triangle-best-offer {
    display: block; } }

/*===================================================
VERTICAL TAB
===================================================*/
.vertical-tab {
  width: 100%; }
  @media (min-width: 768px) {
    .vertical-tab {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .vertical-tab .content-holder {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%; }
    .vertical-tab .content-holder > div:first-of-type {
      padding: 10px 20px; }
      @media (min-width: 768px) {
        .vertical-tab .content-holder > div:first-of-type {
          max-width: 560px;
          margin: 0 auto; } }
    .vertical-tab .content-holder [id*='index-'] {
      display: none; }
      .vertical-tab .content-holder [id*='index-'].active {
        display: block; }
  .vertical-tab .content-holder,
  .vertical-tab .tab-control {
    padding-top: 30px; }
  .vertical-tab .index-holder {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    -webkit-transition: background .24s ease-in-out;
    transition: background .24s ease-in-out;
    border-left: 1px solid #dcdcdc; }
    .vertical-tab .index-holder .tab-control {
      padding-left: 1.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-top: 20px;
      padding-bottom: 20px;
      padding-left: 20px;
      position: relative;
      background: #f9f9f9; }
      .vertical-tab .index-holder .tab-control:not(:last-child) {
        border-bottom: 1px solid #dcdcdc; }
      .vertical-tab .index-holder .tab-control:hover {
        cursor: pointer; }
      .vertical-tab .index-holder .tab-control.active {
        background: #ffffff;
        border-left: 1px solid #ffffff; }
        .vertical-tab .index-holder .tab-control.active:before {
          content: "";
          height: 100%;
          position: absolute;
          width: 1px;
          background: #ffffff;
          left: -2px;
          top: 0;
          z-index: 1; }
      .vertical-tab .index-holder .tab-control p {
        line-height: 19px;
        margin: 5px 0px 10px; }
      .vertical-tab .index-holder .tab-control small {
        font-size: 15px;
        line-height: 19px;
        font-family: 'ProximaNova-Light';
        max-width: 320px; }
      .vertical-tab .index-holder .tab-control .bold-small-title {
        line-height: normal;
        max-width: 350px; }
  .vertical-tab .list-inline > li {
    position: relative;
    cursor: pointer; }
    .vertical-tab .list-inline > li:hover > .tooltip-content {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transition: opacity .2s ease-in-out, visibility .01s linear .01s, -webkit-transform .2s ease-in-out;
      transition: opacity .2s ease-in-out, visibility .01s linear .01s, -webkit-transform .2s ease-in-out;
      transition: transform .2s ease-in-out, opacity .2s ease-in-out, visibility .01s linear .01s;
      transition: transform .2s ease-in-out, opacity .2s ease-in-out, visibility .01s linear .01s, -webkit-transform .2s ease-in-out;
      opacity: 1;
      visibility: visible;
      height: auto;
      padding: 20px;
      max-width: 267px;
      min-width: 224px;
      z-index: 9; }
    .vertical-tab .list-inline > li img {
      display: block;
      vertical-align: bottom; }
  .vertical-tab .list-inline .tooltip-content {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: absolute;
    max-width: 205px;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transition: all .24s ease;
    transition: all .24s ease;
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    left: 0;
    line-height: 22px;
    opacity: 0;
    height: 0; }
    .vertical-tab .list-inline .tooltip-content h5 {
      font-size: 17px; }
    .vertical-tab .list-inline .tooltip-content p {
      font-size: 15px;
      line-height: 19px;
      margin-top: 5px; }

/*===================================================
WHITE BOX
====================================================*/
.white-box-content {
  background: #ffffff;
  position: relative;
  padding: 40px 15px;
  margin: 60px auto;
  max-width: 380px;
  min-height: 380px;
  text-align: center; }
  @media screen and (min-width: 992px) {
    .white-box-content {
      padding: 0 15px; } }
  .white-box-content.no-margin-bottom {
    margin: 60px auto 0px; }
  .white-box-content p {
    font-family: "ProximaNova";
    font-size: 15px;
    color: #333333;
    line-height: 22px;
    text-align: left;
    margin: 0; }
  .white-box-content .cta-details {
    text-align: center; }
  .white-box-content h4 {
    font-family: "MuseoSans-300", arial, sans-serif;
    font-size: 24px;
    line-height: 36px;
    padding: 35px 0 6px;
    margin: 0;
    color: #025091;
    text-align: center;
    font-weight: normal; }
    @media screen and (min-width: 992px) {
      .white-box-content h4 {
        padding: 85px 0 6px; } }
    .white-box-content h4 + p {
      text-align: center; }
  .white-box-content ul > li {
    margin: 15px 0 0 20px;
    text-align: left;
    font-family: "ProximaNova";
    font-size: 15px;
    color: #333333;
    line-height: normal;
    list-style: disc; }
  .white-box-content .description {
    padding: 0 0 50px; }

.white-box-private-cloud {
  position: relative;
  background: #ffffff;
  padding: 40px 20px 20px 20px;
  min-height: 440px;
  margin: 0;
  font-family: "MuseoSans-300"; }
  .white-box-private-cloud h3 {
    font-size: 24px;
    color: #025091;
    padding: 20px 0px; }

.he-sm-white-box {
  position: relative;
  background: #ffffff;
  padding: 0 20px;
  min-height: 235px;
  margin: 0 auto;
  max-width: 380px; }
  .he-sm-white-box h6 {
    padding: 40px 0 0;
    font-family: "MuseoSans-300", arial, sans-serif;
    font-size: 28px;
    line-height: 36px;
    color: #025091;
    font-weight: normal; }

.resell-white-box {
  background: rgba(255, 255, 255, 0.5);
  padding: 30px 0;
  min-height: 355px;
  color: #025091; }
  .resell-white-box h3 {
    font-size: 21px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    text-align: center;
    margin: 0;
    padding: 20px 0 0; }
  .resell-white-box p {
    font-family: "ProximaNova";
    font-size: 16px;
    padding: 0; }

@media screen and (max-width: 37em) {
  .apps4-partners-products .white-box-content {
    min-height: 410px;
    margin: 40px auto 10px; } }

@media screen and (max-width: 59.063em) {
  .apps4-partners-products .white-box-content {
    min-height: 460px; } }

/*====================================================
WHITE CARDS - Email protection and continuity
====================================================*/
.card-white {
  background: #ffffff;
  position: relative;
  padding: 20px 10px;
  min-height: 500px;
  font-family: "ProximaNova"; }
  .card-white ul {
    list-style: none;
    line-height: 30px; }
  .card-white .sticker {
    color: white;
    font-size: 85%;
    padding: 4px 15px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); }

.with-sticker .card-white {
  padding: 40px 30px; }

.youtube-iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }
  .youtube-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .youtube-iframe-container.active-shadow {
    -webkit-box-shadow: 0 10px 40px 8px rgba(3, 27, 56, 0.14);
            box-shadow: 0 10px 40px 8px rgba(3, 27, 56, 0.14); }

/*====================================================
MODULE : VIDEO THUMBNAILS
====================================================*/
.v-thumbnails {
  padding: 60px 0; }
  .v-thumbnails .frame-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .v-thumbnails .frame-flex img {
      padding: initial; }
  .v-thumbnails .v-copy > * {
    text-align: center; }
    @media (min-width: 768px) {
      .v-thumbnails .v-copy > * {
        max-width: 80%;
        text-align: left; } }
  .v-thumbnails .v-thumbnail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px; }
    .v-thumbnails .v-thumbnail a {
      border: 5px solid transparent;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      .v-thumbnails .v-thumbnail a .fa {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        color: #ffffff;
        font-size: 21px;
        z-index: 3;
        -webkit-transition: color .25s ease-in-out;
        transition: color .25s ease-in-out; }
        @media (min-width: 768px) {
          .v-thumbnails .v-thumbnail a .fa {
            font-size: 32px; } }
        @media (min-width: 992px) {
          .v-thumbnails .v-thumbnail a .fa {
            font-size: 42px; } }
      .v-thumbnails .v-thumbnail a:not(:last-of-type) {
        margin-right: 10px; }
      .v-thumbnails .v-thumbnail a:not(.active):before {
        content: '';
        position: absolute;
        background: rgba(0, 0, 0, 0.55);
        width: 100%;
        height: 100%;
        z-index: 2;
        left: 0;
        top: 0; }
      .v-thumbnails .v-thumbnail a.active {
        border: 5px solid #35a4dd; }
        .v-thumbnails .v-thumbnail a.active .fa {
          display: none; }
      .v-thumbnails .v-thumbnail a:hover .fa {
        color: #35a4dd; }

.discover-Play-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

/*
.play-center-small {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -138.5px;
	margin-left: -122.5px;
	z-index: 9;
	opacity: 1;
}

//Not used anymore, replace by relative class in html
.play-contener{
	position: relative;
}*/
#geo-msp {
  position: relative;
  z-index: 9; }
  @media (max-width: 768px) {
    #geo-msp {
      display: none; } }
  #geo-msp .sliderin {
    position: fixed;
    background-color: #4E70FF;
    background-size: cover;
    color: white;
    overflow: hidden;
    bottom: 0;
    left: -600px;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    -webkit-box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.45);
            box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.45); }
    #geo-msp .sliderin.is-active {
      left: 0;
      opacity: 1; }
      #geo-msp .sliderin.is-active.is-minified {
        left: -430px; }
    #geo-msp .sliderin .banner-image {
      max-width: 510px; }
    #geo-msp .sliderin .sliderin-content {
      position: relative;
      z-index: 2; }
    #geo-msp .sliderin .close {
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 9;
      background: -webkit-gradient(linear, left top, right bottom, from(#ec6d1c), to(#f04));
      background: linear-gradient(to bottom right, #ec6d1c, #f04);
      letter-spacing: -1px; }
      #geo-msp .sliderin .close span {
        padding: 0 10px;
        text-decoration: none;
        color: white; }
        @media (min-width: 567px) {
          #geo-msp .sliderin .close span {
            font-size: 21px; } }

body.error404 {
  background: #d4d4d4;
  overflow: hidden; }
  body.error404 #header {
    display: none; }
  body.error404 h1 {
    font-family: "MuseoSans-500";
    color: #025091;
    font-size: 64px;
    padding-bottom: 0;
    margin-bottom: 5px;
    letter-spacing: -2px; }
  body.error404 h2 {
    font-family: "MuseoSans-100";
    color: #3dabe8;
    font-size: 44px;
    margin: 0;
    padding-bottom: 30px;
    letter-spacing: -2px; }
  body.error404 p {
    font-size: 20px;
    line-height: 32px;
    max-width: 680px;
    margin: 0 auto 22px auto; }
    @media screen and (min-width: 992px) {
      body.error404 p {
        margin: 0 0 22px 0; } }
  body.error404 .copy {
    position: relative;
    text-align: center;
    padding: 1.2em; }
    @media screen and (min-width: 992px) {
      body.error404 .copy {
        position: absolute;
        text-align: left;
        z-index: 1;
        right: 0%; } }
  body.error404 .first-cloud-top, body.error404 .second-cloud-top {
    display: none; }
    @media screen and (min-width: 768px) {
      body.error404 .first-cloud-top, body.error404 .second-cloud-top {
        display: inherit; } }
  body.error404 .first-cloud-top {
    width: 65%;
    top: -200px;
    position: relative;
    -webkit-animation: c 20s linear infinite;
            animation: c 20s linear infinite; }
  body.error404 .second-cloud-top {
    width: 40%;
    position: absolute;
    top: 100px;
    -webkit-animation: c 35s linear infinite;
            animation: c 35s linear infinite; }
  body.error404 .cloud-container {
    position: relative; }
    @media screen and (min-width: 768px) {
      body.error404 .cloud-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%; } }
    body.error404 .cloud-container .left-bottom-cloud, body.error404 .cloud-container .right-bottom {
      position: absolute;
      -webkit-animation: d 3s ease-in-out infinite, d-rotate 3s ease-in-out infinite;
              animation: d 3s ease-in-out infinite, d-rotate 3s ease-in-out infinite; }
    body.error404 .cloud-container .left-bottom-cloud {
      left: -31%;
      bottom: -80px;
      width: 65%; }
    body.error404 .cloud-container .right-bottom {
      right: 0;
      width: 65%; }
      @media screen and (min-width: 768px) {
        body.error404 .cloud-container .right-bottom {
          right: -28%; } }
  body.error404 .boat {
    position: absolute;
    width: 40%;
    -webkit-animation: bt 2s infinite ease-in-out;
            animation: bt 2s infinite ease-in-out;
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
    display: none; }
    @media screen and (min-width: 992px) {
      body.error404 .boat {
        display: inline; } }
  body.error404 .search_form_container {
    float: none;
    width: 60%;
    border: 1px solid #3dabe8;
    border-radius: 5px;
    margin: 0 auto; }
    @media screen and (min-width: 992px) {
      body.error404 .search_form_container {
        margin: 0; } }
    body.error404 .search_form_container input[type="submit"] {
      background: transparent url(https://images.apps4.com/images/svg-website/404/glass.svg);
      width: 59px;
      height: 45px;
      background-repeat: no-repeat;
      margin-top: 5px;
      margin-right: 5px; }
    body.error404 .search_form_container .search-field {
      float: none;
      padding: 16px 10px;
      font-family: "MuseoSans-300";
      font-size: 22px;
      border-right: 1px solid #3dabe8;
      width: calc(100% - 70px); }
    body.error404 .search_form_container input[type="search"]::-webkit-input-placeholder {
      color: transparent; }
    body.error404 .search_form_container input[type="search"]::-moz-placeholder {
      color: transparent; }
    body.error404 .search_form_container input[type="search"]:-ms-input-placeholder {
      color: transparent; }
    body.error404 .search_form_container input[type="search"]:-moz-placeholder {
      color: transparent; }
    body.error404 .search_form_container *:focus {
      outline: none; }
  body.error404 .back-to-home {
    border: 1px solid #3dabe8;
    padding: 8px 50px 8px 25px;
    border-radius: 5px;
    color: #3dabe8;
    position: relative; }
    body.error404 .back-to-home:after {
      content: '';
      background: url("https://images.apps4.com/images/svg-website/404/back-arrow-404.svg") no-repeat center;
      width: 25px;
      height: 25px;
      right: 15px;
      top: 7px;
      position: absolute; }

/* ====================================================
   404 ANIMATIONS
   ==================================================== */
@-webkit-keyframes c {
  0% {
    -webkit-transform: translateX(-1200px);
            transform: translateX(-1200px); }
  100% {
    -webkit-transform: translateX(2200px);
            transform: translateX(2200px); } }

@keyframes c {
  0% {
    -webkit-transform: translateX(-1200px);
            transform: translateX(-1200px); }
  100% {
    -webkit-transform: translateX(2200px);
            transform: translateX(2200px); } }

@-webkit-keyframes bt {
  0% {
    bottom: 0px;
    left: 0px; }
  25% {
    bottom: -2px;
    left: -2px; }
  70% {
    bottom: 2px;
    left: -2px; }
  100% {
    bottom: -1px;
    left: 0px; } }

@keyframes bt {
  0% {
    bottom: 0px;
    left: 0px; }
  25% {
    bottom: -2px;
    left: -2px; }
  70% {
    bottom: 2px;
    left: -2px; }
  100% {
    bottom: -1px;
    left: 0px; } }

@-webkit-keyframes d {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px); }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px); }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px); } }

@keyframes d {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px); }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px); }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px); } }

/*====================================================
ABOUT US SECTION NOTE : Those backgrounds have been inlined
====================================================*/
.why-apps4-aboutus {
  background: #025091 url("https://images.apps4.com/images/about-us/aboutus-why-apps4.jpg") top center no-repeat;
  color: #ffffff;
  background-size: cover;
  padding: 60px 0px 30px; }

.apps4-product-line .portfolio-sprite.cloud-servers {
  background: url("https://images.apps4.com/images/homepage/_products_apps4.png") -129px 0; }

.medium-dialog {
  background: #ffffff;
  padding: 20px 30px;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  position: relative; }

@media screen and (max-width: 604px) {
  .inner-exec .c-25, .inner-exec .c-65, .inner-exec .profile {
    text-align: center; }
  .inner-exec .c-25, .inner-exec .c-65 {
    width: 100%; } }

#tabs-bar.about-us #tab-building-nav {
  border-bottom: 2px solid #ffffff; }
  #tabs-bar.about-us #tab-building-nav li a.current:after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid #ffffff;
    bottom: -5px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background: transparent;
    margin-left: -15px !important; }

/*.flexslider.about-us #img-list img {
    display: inline;
    margin: 0px 10px;
    max-height: inherit;
    max-width: 120px;
}*/
.profile-block img {
  /*
    //Clip path not support by IE and Firefox
    -webkit-clip-path: circle(100px at center);
    clip-path: circle(100px at center);
    */
  border-radius: 49px;
  max-width: 220px; }

/*====================================================
ABOUT/AWARDS
====================================================*/
.awards-row .awards-cell {
  width: 100%; }
  .awards-row .awards-cell:first-child img {
    max-width: 200px; }
  @media screen and (min-width: 768px) {
    .awards-row .awards-cell:first-child {
      width: 20%; }
    .awards-row .awards-cell:last-child {
      width: 80%; } }
  .awards-row .awards-cell sup {
    top: -1em;
    font-size: x-small; }

.awards-row h3 {
  font-size: 20px;
  font-family: "ProximaNova-bold" !important;
  margin-top: 0px; }

/*
//REPLACED BY : list-inline
//Employee certifications : https://www.apps4.com/about/awards/
.company-certifications li {
    display: inline-block;
    vertical-align: middle;
}*/
/*====================================================
AWARDS SLIDER - NOT USED
====================================================*/
/*
.awards-slider li {
    position: relative;
}

.awards--slider {
    display: inline-block !important;
    max-width: 130px!important;
    margin: auto;
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0; //right: 0;
}

.awslider .flex-control-nav {
    display: none;
}

.awslider h3 {
    font-size: 20px;
    font-family: "ProximaNova-bold" !important;
}

.awslider sup {
    font-size: 60%
}

@media screen and (max-width:768px) {
    .awslider .c-20 {
        display: none;
    }
    .awslider .c-80 {
        width: 100%;
    }
}
*/
/*====================================================
CERTIFICATIONS STYLE *IS THIS USED?*
====================================================*/
/* .certifications {
    padding: 40px 0 30px;
    text-align: center;
    display: none;
}
*/
/* ====================================================
   BRIGHTWORKS STYLE
   ==================================================== */
#price-and-features {
  background: #ffffff;
  padding: 30px 0 10px;
  margin-bottom: -15px; }
  #price-and-features li {
    display: inline-block;
    vertical-align: middle;
    width: 180px;
    height: 180px;
    background: #35a4dd;
    border-radius: 50%;
    color: #ffffff;
    padding: 22px;
    font-family: 'ProximaNova-Bold';
    margin: 0 auto 30px; }
    #price-and-features li:last-child {
      margin-right: 0; }
      #price-and-features li:last-child span {
        position: relative;
        top: 17px; }
    @media screen and (min-width: 576px) {
      #price-and-features li {
        margin-right: 35px; } }
  #price-and-features .unique-price {
    display: inline-block;
    max-width: 420px;
    margin: 0 auto;
    font-family: 'ProximaNova';
    color: #bbbbbb;
    top: -15px;
    position: relative;
    margin-bottom: -30px; }
    #price-and-features .unique-price div {
      position: relative; }
      #price-and-features .unique-price div span:first-child {
        font-size: 130px;
        color: #35a4dd;
        letter-spacing: -5px; }
        body.fr #price-and-features .unique-price div span:first-child {
          font-size: 130px; }
      #price-and-features .unique-price div span:nth-child(2) {
        display: inline-block;
        position: relative;
        left: 10px;
        font-size: 26px;
        line-height: 26px;
        top: 20px;
        letter-spacing: -1px;
        text-align: left; }

.rounded-plus {
  background: #35a4dd;
  height: 180px;
  width: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  position: relative; }
  .rounded-plus img {
    width: 150px; }
  .rounded-plus:after {
    content: '';
    background: url(https://images.apps4.com/images/plus-rounded-signal.svg) no-repeat;
    position: absolute;
    right: 15px;
    bottom: 18px;
    -webkit-transform: scale(2);
            transform: scale(2);
    height: 20px;
    width: 20px; }
  .rounded-plus:hover ~ .regular-text, #newsroom .rounded-plus:hover ~ p {
    color: #35a4dd; }

.block {
  max-width: 400px;
  margin: 0 auto;
  position: relative; }
  .block.divisor:after {
    content: '';
    height: 100%;
    width: 1px;
    position: absolute;
    right: -100px;
    z-index: 2;
    background: #025091;
    top: 0;
    display: none; }
    @media (min-width: 1200px) {
      .block.divisor:after {
        display: block; } }

.product-box-demo {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  position: relative; }
  .product-box-demo .hv__center {
    width: 90px; }
    @media screen and (min-width: 576px) {
      .product-box-demo .hv__center {
        width: 150px; } }

/*
.lightgray-fields{
    textarea, input[type]{
        border: 1px solid rgb(187, 187, 187) !important;
        box-shadow: rgb(187, 187, 187) 0px 6px !important;
        border-radius: 3px !important;
        text-transform: none !important;
        color: $grey !important;
        font-size: 16px !important;        
    }
}*/
.brightwork .featured-container h1 {
  font-size: 80px; }

/*====================================================
CAREERS SECTION CUSTOM STYLES
====================================================*/
.apps4-jobs-module {
  background: #025091 url("https://images.apps4.com/images/careers/apps4-careers-jobs.jpg") center center no-repeat;
  color: #ffffff;
  background-size: cover;
  padding: 75px 0px;
  position: relative; }

.holder-blocks .holder-1.career-mkt-avantages {
  background: #025091 url("https://images.apps4.com/images/careers/carriere-marketing.jpg") center center no-repeat;
  background-size: cover; }

@media screen and (max-width: 670px) {
  .carriere-dev .box-partner {
    font-size: 32px;
    margin-bottom: 15px;
    padding: 10px 20px; } }

@media screen and (max-width: 520px) {
  .carriere-dev .box-partner {
    font-size: 28px; } }

/*
.apps4-1 {
    background-image: url('https://images.apps4.com/images/careers/homeslide1-carriere.jpg');
}

.apps4-2 {
    background-image: url('https://images.apps4.com/images/careers/homeslide2-passion.jpg');
}

.apps4-3 {
    background-image: url('https://images.apps4.com/images/careers/homeslide3-talent.jpg');
}

.fullimages{
    .slides>li {
        background-size: cover;
        background-position: center;
        height: 100%;
        width: 100%;
        display: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }   
    
    .flex-control-nav {
        bottom: 20px;
    }

    &:hover{
        .flex-prev, .flex-next{
           opacity: 0.8; 
        }        
        .flex-prev{            
            left: 10px;
        }         
        .flex-next{            
            right: 10px;
        }        
    }
}
*/
/*====================================================
CLOUD
====================================================*/
/**************** PRIVATE CLOUD CONFIG ******************/
.priv-cloud-config h3, .priv-cloud-config h4 {
  color: #025091; }

.priv-cloud-config h3 {
  font-size: 36px;
  display: inline-block;
  background: #ffffff;
  padding: 0px 20px;
  position: relative;
  top: -40px;
  margin: 0px; }

.priv-cloud-config h4 {
  font-size: 42px;
  padding: 30px 0px; }

.priv-cloud-config h5 {
  font-size: 20px;
  color: #3dabe8;
  padding-bottom: 20px;
  margin-top: -20px; }

.priv-cloud-config .box {
  border: 1px solid #025091;
  padding: 20px; }

/************* Tech Spec Table *****************/
.privateC-spec-tb {
  background: #ffffff;
  border-spacing: 0px;
  width: 100%;
  font-family: "MuseoSans-300";
  text-align: left; }
  .privateC-spec-tb .line {
    border-bottom: 1px solid #d4d4d4; }
  .privateC-spec-tb .darker {
    font-family: "MuseoSans-500"; }
  .privateC-spec-tb .DBHead {
    background: #025091;
    height: 50px;
    color: #ffffff;
    font-size: 22px; }
  .privateC-spec-tb tr {
    height: 40px; }
  .privateC-spec-tb td {
    padding-left: 10px; }

/*************** Diagrams ********************/
.click-to-zoom {
  padding-right: 5px; }

.he-ordered-list ul li {
  text-align: left;
  font-family: "ProximaNova";
  color: #333333;
  line-height: 22px;
  font-size: 16px;
  list-style: none;
  margin: 0 0 35px;
  padding: 0 35px; }
  .he-ordered-list ul li:last-of-type {
    margin: 0px; }
  .he-ordered-list ul li span {
    display: block;
    float: left;
    border: 2px solid #025091;
    border-radius: 50%;
    clear: both;
    height: 45px;
    width: 45px;
    padding: 10px 17px;
    margin: 0 10px; }

/************** Media Queries *******************/
@media screen and (max-width: 768px) {
  .slide-Fix {
    height: 405px !important; } }

/*====================================================
CLOUD PORTAL ANTHONY STYLES
====================================================*/
.double-legend-header {
  position: relative;
  margin: 0 auto;
  max-width: 520px;
  border-left: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  height: 120px;
  margin: 0 auto 60px; }

.top-legend:before, .top-legend:after, .bottom-legend:before, .bottom-legend:after {
  content: " ";
  height: 3px;
  position: absolute;
  background: #ffffff; }

.top-legend:before, .bottom-legend:before {
  left: 0px; }

.top-legend:after, .bottom-legend:after {
  right: 0px; }

.top-legend:before, .top-legend:after {
  top: 0px;
  width: 14%; }

.bottom-legend:before, .bottom-legend:after {
  width: 17%;
  bottom: 0px; }

.mq-space {
  height: 0px; }

.light-link {
  font-family: "MuseoSans-300", arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 3;
  padding: 3px 10px;
  border: 1.5px solid #3dabe8;
  display: inline-block; }
  .light-link.red-link {
    border: 0;
    color: #ffffff;
    background: #e30613;
    padding: 5px 13px; }
  .light-link:hover {
    background-color: #7FCB15;
    border: 1.5px solid #7FCB15;
    color: #ffffff; }
    .light-link:hover.red-link {
      border: 0;
      color: #ffffff;
      background: #c00d0d; }

.image-light-link:hover .light-link {
  background-color: #7FCB15;
  border: 1.5px solid #7FCB15;
  color: #ffffff; }
  .image-light-link:hover .light-link.red-link {
    border: 0;
    color: #ffffff;
    background: #c00d0d; }

@media (max-width: 37.75em) {
  .double-legend-header,
  .top-legend:before,
  .top-legend:after,
  .fieldset-header,
  .bottom-legend:before,
  .bottom-legend:after {
    background-color: transparent;
    border: 0px; } }

@media screen and (max-width: 59.063em) {
  .mq-space {
    height: 30px; } }

#max-servers-calculator,
#min-servers-calculator {
  display: none;
  font-family: 'MuseoSans-300';
  color: #ffffff;
  background: #025091;
  padding: 10px;
  border-radius: 3px;
  margin: 0px 0px 30px;
  text-align: center;
  font-size: 18px; }

.cloud-managed-services h2 {
  padding: 0 0 10px; }

.cloud-managed-services h3, .cloud-managed-services p {
  text-align: center;
  margin: 0 auto;
  padding: 0 30px 0 30px;
  max-width: 1200px; }

.cloud-managed-services h3 {
  font-family: "MuseoSans-300";
  color: #025091;
  font-size: 30px; }

.cloud-managed-services p {
  font-family: "ProximaNova";
  color: #333333;
  font-size: 20px; }

.cman {
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%; }

.ligne {
  -webkit-transition: background .2s ease-in;
  transition: background .2s ease-in; }
  .ligne:not(:first-child):hover {
    background: rgba(112, 132, 154, 0.04);
    color: #ffffff; }

.cman-ligne-title {
  font-size: 14px;
  font-family: "MuseoSans-700";
  letter-spacing: -0.5px;
  color: #025091;
  padding: 20px 0px; }

.cam-col03-title,
.cam-col04-title {
  padding: 0 10px 0 0; }

.cman-ligne {
  border-bottom: 1px solid #d4d4d4; }

.cam-col01,
.cam-col01-title {
  padding: 13px 21px; }

.cam-col01, .cam-col02 {
  vertical-align: top;
  text-align: left; }

.cam-col01 {
  font-family: "MuseoSans-300";
  color: #025091;
  font-size: 18px;
  line-height: 24px; }

.cam-col02 {
  font-family: "ProximaNova";
  color: #333333;
  font-size: 14px;
  line-height: 18px;
  padding: 20px 0; }

.tight-col {
  width: 30px; }

/*===================================================
CLOUD SERVERS STYLES
====================================================*/
@media (min-width: 767px) and (max-width: 872px) {
  .how-we-built .title {
    font-size: 22px; }
  .how-we-built .left-title {
    margin: 20px 120px 0 0; }
    .how-we-built .left-title.sub-title {
      margin: 0 10px 0 0; }
  .how-we-built .right-title {
    margin: 20px 0 0 120px; }
    .how-we-built .right-title.sub-title {
      margin: 0 0 0 10px; } }

@media screen and (max-width: 766px) {
  div.how-we-built {
    background: #ffffff; }
    div.how-we-built .desktop-view {
      display: none; }
    div.how-we-built .mobile-view {
      display: block !important; }
      div.how-we-built .mobile-view .sub-title {
        display: inline-block;
        border-top: 2px solid #dae4ef;
        border-bottom: 2px solid #dae4ef;
        padding: 20px; }
      div.how-we-built .mobile-view .how-box .sub-title {
        display: block;
        border: none; }
  .frame .dtable-cell {
    float: none;
    display: block;
    padding: 30px;
    width: 100%; } }

.compare-on-premises-cloud-box {
  border: 1px solid #3dabe8;
  max-width: 400px;
  margin: 0 auto;
  padding: 0px 20px; }
  .compare-on-premises-cloud-box .box-title {
    display: inline-block;
    background-color: #ffffff;
    padding: 0px 25px;
    margin-bottom: -10px;
    position: relative;
    top: -25px;
    font-family: "MuseoSans-300";
    font-size: 32px;
    color: #3dabe8;
    letter-spacing: -1px; }
  .compare-on-premises-cloud-box ul {
    list-style: none;
    text-align: left;
    line-height: 28px;
    font-family: "ProximaNova";
    margin: 0px 30px 60px; }
  .compare-on-premises-cloud-box .fa {
    font-size: 18px;
    vertical-align: middle;
    position: relative;
    left: -5px; }
    .compare-on-premises-cloud-box .fa.fa-windows, .compare-on-premises-cloud-box .fa.fa-linux {
      font-size: 24px;
      margin: 0px 5px;
      color: #333333; }
  .compare-on-premises-cloud-box.right, .compare-on-premises-cloud-box.left {
    float: none; }
  @media screen and (min-width: 992px) {
    .compare-on-premises-cloud-box.right {
      float: right; } }
  @media screen and (min-width: 992px) {
    .compare-on-premises-cloud-box.left {
      float: left; } }

.apps4-performance-cloud-op, .how-we-built-performance-cloud {
  /*background-size: cover;
    background-color: $primary;
    background-position: top center;    
    background-repeat:no-repeat;*/
  text-align: center;
  color: #ffffff;
  padding: 60px 0px; }
  .apps4-performance-cloud-op span, .how-we-built-performance-cloud span {
    color: #ffffff; }

.apps4-performance-cloud-op {
  background-image: url("../img/cloud-blocks-link.jpg");
  background-attachment: fixed; }

.how-we-built-performance-cloud {
  background-image: url("../img/how-we-built-performance-cloud.jpg"); }

.how-we-built {
  padding: 0px;
  background: url("../img/engineer-bullet2.png") center 60px no-repeat;
  min-height: 1000px;
  position: relative; }
  .how-we-built .title {
    font-family: "MuseoSans-700", arial, sans-serif;
    font-size: 31px;
    color: #025091;
    position: relative; }
  .how-we-built .left-title, .how-we-built .right-title {
    border-top: 2px solid #dae4ef;
    border-bottom: 2px solid #dae4ef;
    padding: 15px 0; }
  .how-we-built .left-title {
    text-align: right;
    margin: 20px 150px 0 0; }
  .how-we-built .right-title {
    text-align: left;
    margin: 20px 0 0 150px; }
  .how-we-built .sub-title {
    margin: 0;
    border: 0;
    font-family: "MuseoSans-700", arial, sans-serif;
    color: #025091;
    font-size: 22px;
    text-transform: uppercase; }
  .how-we-built .first {
    margin-top: 90px; }
  .how-we-built .second {
    margin-top: -73px; }
  .how-we-built .third {
    margin-top: -83px; }
  .how-we-built .fourth {
    margin-top: -77px; }
  .how-we-built .fifth {
    margin-top: -83px; }
  .how-we-built .c-35 {
    min-height: 208px; }
    .how-we-built .c-35.right {
      text-align: left;
      float: right; }
    .how-we-built .c-35.left {
      text-align: right; }
  .how-we-built .mobile-view {
    display: none; }
  .how-we-built .how-box {
    max-width: 300px;
    margin: 50px auto 0; }

.cloud-servers-white-paper {
  padding: 30px 0px;
  background: #025091 url("../img/report-cloud-servers.jpg") no-repeat center;
  text-align: center;
  background-size: cover; }
  .cloud-servers-white-paper .mktoLabel.mktoHasWidth {
    color: #ffffff !important; }
  .cloud-servers-white-paper .cloud-report-download {
    margin: 30px 0px -30px 0px; }
    .cloud-servers-white-paper .cloud-report-download li {
      display: inline-block;
      padding: 0.7em; }
    .cloud-servers-white-paper .cloud-report-download .white-paper-icon {
      top: -35px;
      position: relative; }

.graph_menu {
  background: transparent; }
  .graph_menu ul {
    list-style: none;
    padding: 0; }
  .graph_menu li {
    width: 100%;
    padding: 22px 20px;
    color: #ffffff;
    font-family: "MuseoSans-500", arial, sans-serif;
    font-size: 16px;
    text-align: left;
    background: #3dabe8;
    margin: 20px 0px;
    position: relative;
    letter-spacing: -.5px;
    -webkit-transition: all 0.14s ease 0s;
    transition: all 0.14s ease 0s;
    cursor: pointer; }
    .graph_menu li:hover, .graph_menu li.active {
      background: #025091;
      color: #ffffff; }
    .graph_menu li:after {
      content: "";
      background: url("https://images.apps4.com/images/svg-website/arrow-benchmark.svg") no-repeat;
      width: 45px;
      height: 45px;
      position: absolute;
      right: 15px;
      top: 22px; }

.videograph_container {
  margin-top: 15px; }
  .videograph_container .videograph {
    display: none;
    position: relative; }
    .videograph_container .videograph p {
      color: #025091;
      font-family: MuseoSans-300, arial, sans-serif;
      font-size: 13px;
      padding: 20px;
      text-align: left;
      border-top: 1px solid rgba(2, 80, 145, 0.48);
      padding-left: 0px; }
    .videograph_container .videograph.active {
      display: block; }
    .videograph_container .videograph .column-graph {
      height: 70px; }
      .videograph_container .videograph .column-graph.first {
        height: 100px; }
        .videograph_container .videograph .column-graph.first .animate-width {
          margin-top: 25px; }
      .videograph_container .videograph .column-graph img {
        margin-top: 15px;
        margin-bottom: 30px;
        float: left; }
      .videograph_container .videograph .column-graph .animate-width {
        width: 0;
        height: 15px;
        background-color: #025091;
        float: left;
        position: relative; }
      .videograph_container .videograph .column-graph h4 {
        color: #025091;
        font-family: ProximaNova;
        font-size: 20px;
        margin: 0px 20px;
        padding-bottom: 0;
        line-height: normal;
        text-align: left; }
      .videograph_container .videograph .column-graph h5 {
        color: #025091;
        font-family: ProximaNova;
        font-size: 20px;
        position: absolute;
        right: -85px;
        top: -9px;
        opacity: 0;
        font-weight: normal; }

.title-description,
.white-list-box h5.sub-title {
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  font-family: MuseoSans-300, arial, sans-serif;
  color: #025091;
  font-weight: normal; }

.bigstroke_blue {
  background: #025091;
  padding: 60px 0;
  text-align: center; }

.low-title {
  font-size: 28px;
  font-family: "MuseoSans-700", arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  margin: 0; }
  .low-title.light-low-title {
    font-family: "MuseoSans-500", arial, sans-serif; }

#error_msg {
  color: red;
  font-size: 17px;
  text-align: center;
  font-family: MuseoSans-700, arial, sans-serif;
  margin-bottom: 20px; }

#register_pass ::-webkit-input-placeholder {
  color: #333333; }

#register_pass :-moz-placeholder {
  color: #333333; }

#register_pass ::-moz-placeholder {
  color: #333333; }

#register_pass :-ms-input-placeholder {
  color: #333333; }

#register_pass input {
  border: none;
  padding: 10px 20px;
  font-family: 'MuseoSans-300', arial, sans-serif;
  font-size: 18px;
  width: 100%;
  color: #025091; }

#register_pass label {
  display: block;
  font-family: 'MuseoSans-300It', arial, sans-serif;
  color: #025091;
  background: #dae4ef;
  position: relative;
  font-size: 17px;
  overflow: hidden;
  margin-bottom: 20px;
  text-align: left; }
  #register_pass label:after {
    content: " ";
    height: 1px;
    width: 100%;
    background: #dae4ef;
    left: 85px;
    top: 10px;
    position: absolute; }

.why-apps4-ol li {
  font-family: MuseoSans-300, arial, sans-serif;
  color: #025091;
  font-size: 18px;
  line-height: 22px;
  vertical-align: top;
  padding-left: 25px;
  margin-bottom: 30px;
  min-height: 40px;
  text-align: left; }
  .why-apps4-ol li span {
    font-family: MuseoSans-500, arial, sans-serif;
    display: block;
    font-size: 22px;
    line-height: 32px; }

.dtable {
  display: table; }

.dtable-row {
  display: table-row; }

.dtable-cell {
  float: none;
  display: table-cell;
  vertical-align: middle;
  padding: 30px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }

.reset-table-style {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  table-layout: fixed; }

td.outline {
  border: 1px solid #dae4ef;
  text-align: center;
  color: #025091;
  font-size: 16px;
  padding: 30px 0;
  font-family: MuseoSans-500, arial, sans-serif; }

.cloud-servers-title {
  font-family: "ProximaNova-Bold";
  font-size: 18px; }
  .cloud-servers-title.regular-size {
    font-size: 16px; }

.cloud-servers-list {
  line-height: 28px;
  font-family: "ProximaNova";
  font-size: 16px;
  list-style: none; }

.servers-page-icons {
  min-height: 105px; }

.border-cloud-block {
  border-left: 3px solid #35a4dd;
  padding-left: 15px;
  min-height: 65px; }

.box-line-building, .line-building {
  height: 0px; }

.box-line-building {
  position: relative; }

.line-building {
  border-bottom: 2px solid #025091; }

.triangle-building {
  background: #ffffff;
  border: 2px solid #025091;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: relative;
  left: 45px;
  top: -6px;
  width: 15px;
  height: 15px; }

.cloud-block-bundle {
  display: table;
  width: 100%;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  min-height: 1px; }
  .cloud-block-bundle .icon, .cloud-block-bundle .icon2 {
    display: table-cell;
    padding: 0px 10px 0px 0px;
    vertical-align: middle; }
  .cloud-block-bundle .icon {
    width: 30%; }
  .cloud-block-bundle .icon2 {
    width: 25%; }
  .cloud-block-bundle .copy-content {
    position: relative; }
    .cloud-block-bundle .copy-content .cloud-block-link {
      border-top: 5px solid #3dabe8;
      background-color: #ffffff;
      padding: 15px 0px 5px 15px; }
      .cloud-block-bundle .copy-content .cloud-block-link.dark-Blue-top {
        border-top: 5px solid #025091; }
  .cloud-block-bundle .copy {
    display: table-cell; }
  .cloud-block-bundle .title, .cloud-block-bundle .sub-title {
    font-family: "MuseoSans-500"; }
  .cloud-block-bundle .title {
    letter-spacing: -1px;
    font-size: 21px;
    line-height: 31px; }
  .cloud-block-bundle .sub-title {
    letter-spacing: -.5px;
    font-size: 16px; }
  .cloud-block-bundle .cloud-block-hovered {
    border-top: 5px solid #7FCB15;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    top: 0px;
    opacity: 0;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in; }
    .cloud-block-bundle .cloud-block-hovered img {
      margin: auto;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
  .cloud-block-bundle:hover .cloud-block-hovered {
    opacity: 1; }

/*===================================================
CLOUD SERVICES DEMAND MODULE
====================================================*/
.cloud-services-demand .line-divisor {
  display: inline-block;
  margin: 30px 0;
  background: #dae4ef;
  height: 1px;
  border: none; }

.cloud-services-demand img {
  padding: 30px 0 0; }

.cloud-services-demand p {
  color: #025091;
  font-size: 24px;
  font-family: "ProximaNova-Bold";
  font-weight: normal; }
  .cloud-services-demand p + p {
    font-size: 18px;
    margin: 30px 0 0; }
    .cloud-services-demand p + p span {
      color: #0b0b0b; }

.cloud-services-demand h4 {
  padding: 0;
  font-size: 26px;
  line-height: normal; }

.cloud-services-demand .details {
  text-align: center;
  padding: 0px; }
  @media screen and (min-width: 768px) {
    .cloud-services-demand .details {
      padding: 100px 0 0;
      text-align: left; } }

.cloud-services-demand .featured-number {
  font-size: 68px; }

.cloud-services-demand .results-number {
  font-size: 25px; }

.cloud-box-features, .performance-index {
  font-size: 16px;
  text-align: center; }

.cloud-box-features {
  font-family: "MuseoSans-300", arial, sans-serif;
  color: #025091;
  line-height: 20px;
  margin: 5px 0 0; }

.performance-index, .db-size {
  font-family: "MuseoSans-700", arial, sans-serif; }

.db-size {
  display: block;
  margin: 22px 0 35px;
  font-size: 32px; }
  .db-size span {
    display: block; }

.price-cloud-database {
  text-align: center;
  font-size: 18px;
  padding: 20px 0 40px;
  font-family: "MuseoSans-500", arial, sans-serif;
  color: #3dabe8; }
  .price-cloud-database span {
    display: block;
    line-height: 50px;
    font-size: 36px;
    font-family: MuseoSans-500, arial, sans-serif;
    color: #025091; }

/*===================================================
OLD PRICING STYLE - IS THIS USED ?
====================================================*/
/*
.title-type,
.ptiming {
    background: $bg-light;
    padding: 5px;
}

.pricing-value {
    background: $bg-light;
    span.comissions {
        font-size: 26px;
        padding: 10px 0;
    }
}

.odd-box {
    margin: 15px 0 45px;
    p {
        font-size: 18px;
        font-family: "MuseoSans-300it";
        padding: 10px;
        line-height: 32px;
        color: $primary;
        span {
            font-family: "ProximaNova-Boldit";
            text-transform: uppercase;
            text-shadow: 0 1px 0 $white;
            font-size: 14px;
            display: block;
        }
    }
}*/
/*
//Lines to separate c-3 (was same color as background)
//Example : https://www.apps4.com/cloud/managed/
.borders-cloud .c-3:last-child {
    border-right: none;
}

.borders-cloud .last {
    border-bottom: none !important;
}

 .borders-cloud .c-3 {
    border-right: 1px solid $bg-light;
    border-bottom: 1px solid $bg-light;
} */
/*====================================================
PROMO CLOUD SERVERS MODULE  -- IS THIS USED?
====================================================*/
/*
.promo-cloud-servers {
    display: table;
    width: 100%;
    height: 80px;
    position: fixed;
    bottom: 0;
    background: $red;
    z-index: 9;
    transition: all 0.7s ease-out;
    .promo-content {
        position: relative;
        vertical-align: middle;
        display: table-cell;
        >span {
            position: absolute;
            right: 0;
            top: -65px;
            background: $red;
            padding: 15px 40px;
            color: $white;
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
            display: none;
        }
    }
    p {
        margin: 0;
        text-align: center;
        font-size: 29px;
        color: $white;
        font-family: "MuseoSans-300";
        letter-spacing: -1px;
        img:first-of-type {
            vertical-align: middle;
            margin: 0 10px 0 0;
        }
        span {
            font-family: "MuseoSans-700";
        }
        img:last-of-type {
            vertical-align: middle;
            margin: 0 0 0 10px;
        }
    }
}
*/
#slidersidein .close {
  top: 41%; }

@media screen and (max-width: 480px) {
  #slidersidein #slidersidein {
    display: none; } }

.flag-icon:before {
  margin: 0px 8px 0px 0;
  width: 30px;
  height: 30px;
  display: inline-block;
  top: 7px;
  position: absolute; }

.flag-icon-us:before {
  content: url("https://images.apps4.com/images/svg-website/usa_flag.svg"); }

.flag-icon-ca:before {
  content: url("https://images.apps4.com/images/svg-website/canada-flag.svg"); }

/*
.site-wrapper-home.dynamics-reseller {
    .sign-up {
        background-image: url('https://images.apps4.com/images/dynamics-365/no-commitment-banner-img.jpg');
        display: flex;
        align-items: center;
        background-position: 30% center;
        @media screen and (min-width: 992px) {
            background-attachment:fixed;
            background-size: cover;
            background-position: center;
        }

        .sign-up-content {
            padding: 1em 2em;
            border: 2px solid $white;
            .section-title {
                .small {
                    color: inherit;
                    font-size: 70%;
                    text-transform: none;
                }
            }
        }
    }
}*/
body.fr {
  /*.section-title {
        font-size: 42px;
    }*/
  /*.promo-cloud-servers p {
        font-size: 26px;
    }*/
  /*.request-demo-cloud-servers {
        left: -85px;
    }*/ }
  body.fr #tabs-bar ul li {
    list-style: none;
    display: inline-block;
    padding: 0px 60px 0px 0px;
    position: relative; }
  body.fr .compare-column.box-plans {
    min-height: 510px; }
    body.fr .compare-column.box-plans h3 {
      font-size: 22px; }
  body.fr .white-box-content {
    min-height: 460px; }
    body.fr .white-box-content h4 {
      font-size: 22px; }
  body.fr .resell-blue-box {
    min-height: 375px; }
  body.fr .comission-box.plus-signal:after {
    font-size: 75px; }
  body.fr .compare-column.box-plans.full {
    min-height: 745px; }
  body.fr .apps4-download-presentation p {
    font-family: "ProximaNova";
    font-size: 26px;
    text-align: left;
    padding: 0 0 0 100px;
    letter-spacing: -1px;
    line-height: 30px; }
  body.fr .compare-table.box-plans {
    padding: 0; }
  body.fr .compare-column.hosted-exchange.bottom-line {
    margin: 0;
    min-height: 415px; }
  body.fr .top-cta .big-blue-btn.partner {
    padding: 20px 20px 20px 70px;
    margin: 5px 0 15px; }
  body.fr .compare-on-premises-cloud-box {
    padding: 0px; }
  body.fr .flip-container,
  body.fr .front,
  body.fr .back {
    height: 500px; }
  body.fr #box-product-module .gadgets li {
    font-size: 18px;
    margin-right: 5px; }
  body.fr #box-product-module .box-module-copy h2 + p:first-of-type {
    font-size: 22px; }
  body.fr #box-product-module .add-space.x2 {
    height: 52px; }
  body.fr .inner-menu a {
    padding: 0 8px; }

.apps4-portfolio {
  font-family: "MuseoSans-500";
  font-size: 16px; }
  .apps4-portfolio a:hover {
    text-decoration: none; }
  .apps4-portfolio h2 {
    padding: 10px 0 20px;
    font-family: 'MuseoSans-700', arial, sans-serif;
    font-size: 42px;
    font-weight: normal;
    color: #025091;
    letter-spacing: -2px;
}
  .apps4-portfolio .portfolio-sprite {
    width: 64px;
    background: url("https://www.apps4rent.com/wp-content/uploads/2019/08/Hosted_apps4rent_products.png");
    height: 64px;
    margin: 0 auto 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: .5px solid white;
    border-radius: 49px; }
    .apps4-portfolio .portfolio-sprite.exchange {
      background-position: -192px 0; }
      .apps4-portfolio .portfolio-sprite.exchange:hover {
        background-position: -192px -64px; }
    .apps4-portfolio .portfolio-sprite.office-365 {
      background-position: -128px 0; }
      .apps4-portfolio .portfolio-sprite.office-365:hover {
        background-position: -128px -64px; }
    .apps4-portfolio .portfolio-sprite.cloud-servers {
      background-position: -64px 0; }
      .apps4-portfolio .portfolio-sprite.cloud-servers:hover {
        background-position: -64px -64px; }
    .apps4-portfolio .portfolio-sprite.voip {
      background-position: -0px 0; }
      .apps4-portfolio .portfolio-sprite.voip:hover {
        background-position: -0px -64px; }
    .apps4-portfolio .portfolio-sprite.online-backup {
      background-position: -256px -0px; }
      .apps4-portfolio .portfolio-sprite.online-backup:hover {
        background-position: -256px -64px; }
    .apps4-portfolio .portfolio-sprite.cloud-vm {
      background-position: -320px 0; }
      .apps4-portfolio .portfolio-sprite.cloud-vm:hover {
        background-position: -320px -64px; }





.apps4rent-portfolio {
  font-family: "MuseoSans-500";
  font-size: 16px; }
  .apps4rent-portfolio a:hover {
    text-decoration: none; }
  .apps4rent-portfolio h2 {
    padding: 0 0 20px;
    font-family: 'MuseoSans-700', arial, sans-serif;
    font-size: 42px;
    font-weight: normal;
    color: #025091;
    letter-spacing: -2px;
}
.apps4rent-portfolio .portfolio-sprite {
    width: 64px;
    background: url("https://www.apps4rent.com/wp-content/uploads/2019/08/our-cloud-infra.png");
    height: 64px;
    margin: 0 auto 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: .5px solid white;
    border-radius: 49px; }
    .apps4rent-portfolio .portfolio-sprite.exchange {
      background-position: -128px -0px; }
      .apps4rent-portfolio .portfolio-sprite.exchange:hover {
        background-position: -128px -64px; }
    .apps4rent-portfolio .portfolio-sprite.office-365 {
      background-position: -255px 0; }
      .apps4rent-portfolio .portfolio-sprite.office-365:hover {
        background-position: -255px -64px; }
    .apps4rent-portfolio .portfolio-sprite.cloud-servers {
      background-position: -320px 0; }
      .apps4rent-portfolio .portfolio-sprite.cloud-servers:hover {
        background-position: -320px -64px; }
    .apps4rent-portfolio .portfolio-sprite.voip {
      background-position: -64px -0px; }
      .apps4rent-portfolio .portfolio-sprite.voip:hover {
        background-position: -64px -64px; }
    .apps4rent-portfolio .portfolio-sprite.online-backup {
      background-position: -192px 0; }
      .apps4rent-portfolio .portfolio-sprite.online-backup:hover {
        background-position: -192px -64px; }
    .apps4rent-portfolio .portfolio-sprite.cloud-vm {
      background-position: -2px 0; }
      .apps4rent-portfolio .portfolio-sprite.cloud-vm:hover {
        background-position: -2px -64px; }





.kat-portfolio {
  font-family: "MuseoSans-500";
  font-size: 16px; }
  .kat-portfolio a:hover {
    text-decoration: none; }
  .kat-portfolio h2 {
    padding: 0 0 20px;
    font-family: 'MuseoSans-700', arial, sans-serif;
    font-size: 42px;
    font-weight: normal;
    color: #025091;
    letter-spacing: -2px;
}
.kat-portfolio .portfolio-sprite {
    width: 64px;
    background: url("https://www.apps4rent.com/wp-content/uploads/2019/08/our-cloud-services.png");
    height: 64px;
    margin: 0 auto 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: .5px solid white;
    border-radius: 49px; }
    .kat-portfolio .portfolio-sprite.exchange {
      background-position: -257px 0; }
      .kat-portfolio .portfolio-sprite.exchange:hover {
        background-position: -257px -64px; }
    .kat-portfolio .portfolio-sprite.office-365 {
      background-position: -64px 0; }
      .kat-portfolio .portfolio-sprite.office-365:hover {
        background-position: -64px -64px; }
    .kat-portfolio .portfolio-sprite.cloud-servers {
      background-position: -0px -0px; }
      .kat-portfolio .portfolio-sprite.cloud-servers:hover {
        background-position: -0px -64px; }
    .kat-portfolio .portfolio-sprite.voip {
      background-position: -192px 0; }
      .kat-portfolio .portfolio-sprite.voip:hover {
        background-position: -192px -64px; }
    .kat-portfolio .portfolio-sprite.online-backup {
      background-position: -320px -0px; }
      .kat-portfolio .portfolio-sprite.online-backup:hover {
        background-position: -320px -65px; }
    .kat-portfolio .portfolio-sprite.cloud-vm {
      background-position: -128px 0; }
      .kat-portfolio .portfolio-sprite.cloud-vm:hover {
        background-position: -128px -64px; 
.controls-wrapper {
  display: none; }

/*
//NOT USED
#apps4-video-home {
    background: $primary url("../img/home-page-fallback.png") top center no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    position: relative;
    max-height: 450px;

    @media screen and (min-width: 768px) {
        background-image:none;
    }
}

#home-video-wrapper {
    width: 100%;
    position: relative;
    padding: 60px 0;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    @media screen and (min-width: 768px) {
        padding-bottom: 56.25%;
    }

    p {
        margin: 0;
    }

    .overlay-home-video, iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;      
    }

    .overlay-home-video {
        height: 100%;
        background-color: rgba($black, 0.4);
        z-index: 9;
    }

    iframe {
        height: auto;
        min-height: 100%;
    }
}

.inside-video-content {
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 9;
    height: 100%;
    h1 {
        padding: 80px 0 0;
        font-size: 60px;
        color: $white;
        font-family: 'MuseoSans-300', arial, sans-serif;
    }
    span {
        font-family: 'MuseoSans-100', arial, sans-serif;
    }

.background-image {
    background-size: cover;
    background-position: 50% 50%;
}

@media screen and (max-width: 768px) {
    .inside-video-content h1 {
        padding: 80px 0 0;
        font-size: 32px;
        color: $white;
        font-family: 'MuseoSans-300', arial, sans-serif;
        margin: 0px;
        padding: 0px 20px !important;
    }
    div#home-video-wrapper iframe {
        display: none;
    }
    .inside-video-content {
        position: relative;
    }
    .inside-video-content h1 {
        padding: 0;
    }
*/
/*====================================================
HOSTED EXCHANGE SPECIFIC
====================================================*/
section.hosted-exchange-bundles {
  display: none; }
  @media screen and (min-width: 768px) {
    section.hosted-exchange-bundles {
      display: block; } }
  section.hosted-exchange-bundles .frame-table > button {
    margin: 0 0 45px; }
  section.hosted-exchange-bundles table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%; }
  section.hosted-exchange-bundles thead td {
    background: #dae4ef;
    padding: 10px;
    border-top: 0;
    width: 13.5460%; }
  section.hosted-exchange-bundles td {
    font-size: 16px; }
    section.hosted-exchange-bundles td .prices td:nth-child(even) {
      background: #dae4ef; }
    section.hosted-exchange-bundles td .prices td:nth-child(odd) {
      background: #e4ecf4; }
    section.hosted-exchange-bundles td .prices th p {
      font-family: "MuseoSans-500", arial, sans-serif;
      font-size: 17px;
      text-shadow: none;
      letter-spacing: 0;
      margin: 30px 0 0; }
      section.hosted-exchange-bundles td .prices th p span {
        font-family: "MuseoSans-700", arial, sans-serif; }
    section.hosted-exchange-bundles td.exchange-bundle-name {
      vertical-align: middle;
      border-bottom: 0;
      color: #dae4ef;
      background: #025091;
      padding: 15px 5px; }
      section.hosted-exchange-bundles td.exchange-bundle-name p {
        color: #dae4ef;
        background: #025091;
        font-size: 14px;
        text-align: center;
        margin: 0;
        font-family: "MuseoSans-700"; }
  section.hosted-exchange-bundles th,
  section.hosted-exchange-bundles td {
    padding: 1em 0.5em; }
  section.hosted-exchange-bundles th {
    font-size: 14px;
    color: #025091;
    text-align: left;
    font-family: "MuseoSans-700";
    line-height: normal;
    font-weight: normal;
    padding: 1.2em 0.5em;
    background-color: #e4ecf4; }
  section.hosted-exchange-bundles .hosted-exchange-price {
    text-align: center; }
  section.hosted-exchange-bundles tr.spacer {
    height: 10px; }
  section.hosted-exchange-bundles tr.inside-spacer {
    height: 5px; }
  section.hosted-exchange-bundles .price {
    margin: 15px 0 12px;
    color: #333333;
    font-family: "MuseoSans-300";
    font-size: 18px; }
    section.hosted-exchange-bundles .price .buy-now {
      display: block;
      background: #e30613;
      padding: 10px;
      color: #dae4ef;
      font-family: "MuseoSans-700";
      font-size: 14px;
      text-decoration: none; }
      section.hosted-exchange-bundles .price .buy-now:hover {
        background: #025091; }
  section.hosted-exchange-bundles .exchange-plan-name p {
    margin: 0;
    font-family: "MuseoSans-900"; }
  section.hosted-exchange-bundles .exchange-plan-name td {
    background: #025091;
    text-align: left; }
  section.hosted-exchange-bundles tbody td {
    text-align: center;
    font-family: "MuseoSans-500";
    color: #025091;
    font-size: 15px; }
    section.hosted-exchange-bundles tbody td:nth-child(even) {
      background: #dae4ef; }
    section.hosted-exchange-bundles tbody td:nth-child(odd) {
      background: #e4ecf4; }
    section.hosted-exchange-bundles tbody td:last-of-type {
      border-right: 0; }
  section.hosted-exchange-bundles tfoot td {
    font-size: 16px;
    color: #025091;
    font-family: "ProximaNova"; }
  section.hosted-exchange-bundles p.switcher-addons {
    background: url("https://images.apps4.com/images/add-office-apps-btn.png") no-repeat;
    width: 350px;
    height: 52px;
    text-indent: -99999px;
    cursor: pointer;
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0 0 1px 3px rgba(11, 11, 11, 0.04);
            box-shadow: 0 0 1px 3px rgba(11, 11, 11, 0.04);
    border-radius: 49px; }
    section.hosted-exchange-bundles p.switcher-addons.ob {
      text-indent: inherit;
      background: none;
      width: auto;
      display: inline-block;
      /* box-shadow: none; */
      padding: 13px 13px 13px 40px;
      position: relative; }
      section.hosted-exchange-bundles p.switcher-addons.ob:before {
        content: '+';
        font-size: 20px;
        padding-top: 3px;
        text-align: center;
        color: #ffffff;
        background: #7FCB15;
        width: 30px;
        height: 30px;
        display: inline-block;
        border-radius: 50%;
        position: absolute;
        left: 5px;
        top: 10px; }
    section.hosted-exchange-bundles p.switcher-addons.addons-active {
      background: url("https://images.apps4.com/images/addons-remove-img.png") no-repeat; }
      section.hosted-exchange-bundles p.switcher-addons.addons-active.ob {
        background: none; }
        section.hosted-exchange-bundles p.switcher-addons.addons-active.ob:before {
          content: '-';
          background: #e30613; }
  section.hosted-exchange-bundles .hosted-exchange-price p {
    color: #025091;
    font-family: "MuseoSans-300";
    font-size: 28px; }
  section.hosted-exchange-bundles .hosted-exchange-price .bundle {
    display: none; }

.red-line {
  border-top: 0;
  border-left: 5px;
  border-bottom: 0;
  border-right: 5px;
  border-style: solid;
  border-color: #3dabe8; }
  .red-line.last-item {
    border-bottom: 5px solid #3dabe8; }

/*===================================================
HOSTED EXCHANGE BIG TAGLE -- Not used according to https://dev.apps4.com/html-search/?html_search=hosted-exchange-features
====================================================*/
/*
.hosted-exchange-features {
    text-align: center;
    background: $white;
    padding: 60px 0;
    position: relative;
    table {
        margin: 0 auto;
        padding: 30px 0;
    }
    table th {
        font-family: "MuseoSans-700";
        text-transform: uppercase;
        color: $primary;
        font-weight: normal;
    }
    table td {
        font-family: "ProximaNova";
        color: $primary;
        font-weight: normal;
        font-size: 16px;
    }
    th.line-bottom,
    td.line-bottom {
        border-bottom: 1px solid $primary;
    }
    table td,
    table th {
        padding: 9px 10px;
        text-align: left;
    }
    @media only screen and (max-width: 767px) {
        table {
            margin: 0 auto;
            padding: 30px 0;
            overflow-x: auto;
            display: block;
        }
        table.responsive {
            margin-bottom: 0;
        }
        .pinned {
            position: absolute;
            left: 0;
            top: 0;
            background: $white;
            width: 45%;
            overflow: hidden;
            overflow-x: scroll;
            border-right: 1px solid $lightgrey;
            border-left: 1px solid $lightgrey;
        }
        .pinned table {
            border-right: none;
            border-left: none;
            width: 100%;
        }
        .pinned table th,
        .pinned table td {
            white-space: nowrap;
        }
        .pinned td:last-child {
            border-bottom: 0;
        }
        div.table-wrapper {
            position: relative;
            margin-bottom: 20px;
            overflow: hidden;
            border-right: 1px solid $lightgrey;
        }
        div.table-wrapper div.scrollable table {
            margin-left: 45%;
        }
        div.table-wrapper div.scrollable {
            overflow: scroll;
            overflow-y: hidden;
        }
        table.responsive td,
        table.responsive th {
            position: relative;
            white-space: nowrap;
            overflow: hidden;
        } //  table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td { display: none; }
    }
    .fa.fa-check-circle {
        font-size: 18px;
    }
}*/
table td.no-bg-he {
  background: transparent !important; }

table td.hosted-exchange-best-offer {
  background: #3dabe8 !important;
  font-size: 16px !important;
  text-align: center;
  margin: 0;
  font-family: "MuseoSans-700";
  text-transform: uppercase;
  color: #ffffff;
  font-weight: normal;
  border: 5px solid #3dabe8;
  border-bottom: 0; }

.mobile-plans-hosted-exchange {
  display: block;
  text-align: center;
  background: #dae4ef; }
  @media screen and (min-width: 768px) {
    .mobile-plans-hosted-exchange {
      display: none; } }
  .mobile-plans-hosted-exchange .mobile-view {
    margin: 0 auto;
    max-width: 480px;
    overflow: auto;
    padding: 0.7em; }
    .mobile-plans-hosted-exchange .mobile-view p {
      font-family: "MuseoSans-700";
      font-weight: normal;
      color: #025091;
      font-size: 16px; }
    .mobile-plans-hosted-exchange .mobile-view span {
      display: block;
      margin: 0 0 10px;
      font-size: 22px; }
    .mobile-plans-hosted-exchange .mobile-view h4 {
      font-family: "MuseoSans-300", arial, sans-serif;
      font-size: 26px;
      padding: 25px 0 0;
      font-weight: normal;
      color: #025091; }
    .mobile-plans-hosted-exchange .mobile-view .c-1 {
      background: #ffffff; }
    .mobile-plans-hosted-exchange .mobile-view .c-1 > div {
      display: inline-block;
      padding: 0 20px;
      margin: 20px 0 10px; }
    .mobile-plans-hosted-exchange .mobile-view .blue-btn {
      padding: 10px 30px; }
  .mobile-plans-hosted-exchange .inner-mobile-content {
    margin: 30px 0 0 !important;
    width: 100%; }
    .mobile-plans-hosted-exchange .inner-mobile-content > button {
      border: 0;
      padding: 15px 60px;
      background: #025091;
      border-radius: 3px;
      font-family: "MuseoSans-700";
      font-size: 16px;
      color: #ffffff;
      margin: 0 0 30px; }
    .mobile-plans-hosted-exchange .inner-mobile-content .details {
      display: none;
      background: #ffffff;
      border-radius: 5px;
      padding: 20px; }
      .mobile-plans-hosted-exchange .inner-mobile-content .details p {
        margin: 25px 0; }
    .mobile-plans-hosted-exchange .inner-mobile-content h5 {
      font-family: "MuseoSans-700";
      margin: 25px 0 10px;
      font-size: 22px;
      font-weight: normal;
      color: #025091; }
    .mobile-plans-hosted-exchange .inner-mobile-content p {
      margin: 0 0 15px;
      font-size: 14px; }
      .mobile-plans-hosted-exchange .inner-mobile-content p span {
        color: #3dabe8;
        font-size: 16px;
        margin: 5px 0; }

/*===================================================
HOSTED EXCHANGE STYLES
====================================================*/
/*.compare-column.hosted-exchange {
    padding: 0 15px 45px;
    height: 100%;
    margin: 0 0 60px;
    min-height: 360px;
    position: relative;
    h3 {
        padding: 70px 0 0;
        font-size: 27px;
        &.no_icon {
            padding: 35px 0 0;
        }
    }
    p {
        font-family: "ProximaNova";
        color: $grey;
        line-height: 22px;
        font-size: 16px;
    }
    li {
        font-family: "ProximaNova";
        color: $grey;
        line-height: 22px;
        font-size: 16px;
        text-align: left;
        margin: 0 0 10px 20px;
    }
}

.compare-column.hosted-exchange.bottom-line {
    margin: 0;
    min-height: 380px;
}

.compare-column.hosted-exchange.top-line {
    margin: 0;
    min-height: 310px;
}

.hosted-exchange-mix {
    font-family: "MuseoSans-300";
    font-size: 22px;
    color: $primary;
    display: inline-block;
    margin: 25px;
}

.inhouse-vs-hosted-exchange {
    background: $bg-light center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: $primary;
    .blue-btn {
        padding: 20px;
    }
}

.exchange-one-stop-shop {
    background: $primary url("../img/hosted-exchange-one-stop-shop.jpg") center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    text-align: center;
}

//Used in exchange 2016 which was killed
.he-rounded-icons {
    position: relative;
    .c-4 {
        min-height: 275px;
    }
    i.fa.fa-check-circle {
        position: absolute;
        left: 15px;
        top: 15px;
        font-size: 36px;
        background-color: $white;
        width: 40px;
        height: 40px;
        border-radius: 15px;
        z-index: 1;
    }
    img {
        margin: 20px 0;
        position: relative;
    }
    p {
        //font-family: "ProximaNova";
        //font-size: 15px;
        //line-height: 22px;
        //color: $grey;        
        margin: 0 auto;
        max-width: 250px;
    }
    h6 {
        font-size: 24px;
        font-family: "MuseoSans-300", arial, sans-serif;
        padding: 0 0 15px;
        font-weight: normal;
    }
}

.migration-team-module {
    background: $primary url("../img/migration-team-background.jpg") center center fixed no-repeat;
    background-size: cover;
    position: relative;
    padding: 60px 0;
    text-align: center;
    border-top: 5px solid $primary;
    p {
        font-family: "ProximaNova";
        font-size: 18px;
        color: $white;
        line-height: 32px;
        padding: 0 20px;
    }
}
*/
.m365-migration-mod {
  background-position: 30%; }
  @media (min-width: 768px) {
    .m365-migration-mod {
      background-position: 50%; } }

.m365-csp {
  padding: 60px; }
  .m365-csp .large-number {
    font-size: 62px; }
  @media (min-width: 768px) {
    .m365-csp .points {
      padding: 40px; } }
  @media (min-width: 768px) {
    .m365-csp .c-2 {
      border-top: 1px solid #d4d4d4; } }
  @media (min-width: 768px) {
    .m365-csp .c-2:first-of-type {
      border-right: 1px solid #d4d4d4; } }

.curved-bg {
  position: relative;
  z-index: 0;
  overflow: hidden; }
  .curved-bg:after {
    content: '';
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%; }
  .curved-bg.curved-bg-left, .curved-bg.curved-bg-right {
    min-height: 1110px; }
    @media screen and (min-width: 992px) {
      .curved-bg.curved-bg-left, .curved-bg.curved-bg-right {
        min-height: inherit; } }
    .curved-bg.curved-bg-left:after, .curved-bg.curved-bg-right:after {
      width: 100%; }
  .curved-bg.curved-bg-left:after {
    background-image: url("https://images.apps4.com/images/nimble/bg-top-mobile.svg"); }
    @media screen and (min-width: 992px) {
      .curved-bg.curved-bg-left:after {
        background-image: url("https://images.apps4.com/images/nimble/bg-top-desktop.svg");
        width: 60%; } }
  .curved-bg.curved-bg-right:after {
    width: 142%;
    left: -94px;
    background-image: url("https://images.apps4.com/images/nimble/bg-bottom-mobile.svg"); }
    @media screen and (min-width: 992px) {
      .curved-bg.curved-bg-right:after {
        background-image: url("https://images.apps4.com/images/nimble/bg-bottom-desktop.svg");
        left: inherit;
        right: 0;
        width: 94%; } }
    @media screen and (min-width: 1600px) {
      .curved-bg.curved-bg-right:after {
        width: 74%; } }

/*
	TABLE OF CONTENTS
	2.	O365 2016 Overview
	3.	O365 2016 Business
	4.	O365 2016 Enterprise
	5.	OFFICE 365 CTA - 30 Days Free
	6.	OFFICE 365 Migration
	7.	Office 365 Advisor Program
*/
/*====================================================
2. O365 2016 Overview
====================================================*/
.boxList {
  color: #025091;
  letter-spacing: -1px;
  line-height: 36px;
  padding: 0 17px; }
  .boxList .title {
    font-size: 30px; }
  .boxList hr {
    border-top: 1px solid rgba(50, 98, 149, 0.3);
    margin: 20px 0 10px; }
  .boxList .xtra {
    font-family: "MuseoSans-700";
    font-size: 24px;
    line-height: 26px;
    padding: 20px 0; }
    .boxList .xtra > span {
      display: block;
      font-size: 18px;
      font-family: "MuseoSans-300"; }

.constructionModule {
  background: url("https://images.apps4.com/images/office-365/header-aec.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0; }

.o365-support-section {
  background: url("https://images.apps4.com/images/svg-website/O365-World.svg") no-repeat center center, url("../img/partner-bg.jpg") repeat center center;
  background-size: 680px, auto;
  padding: 60px 0 30px;
  text-align: center;
  position: relative; }
  .o365-support-section .register-button {
    color: #ffffff;
    padding: 14px 60px;
    font-size: 22px;
    text-decoration: none; }

.o365-support-stats .pad {
  margin-top: 120px; }

.o365-support-stats h4,
.o365-support-stats h5 {
  font-family: "MuseoSans-300", arial, sans-serif;
  padding-bottom: 20px;
  color: #ffffff; }

.o365-support-stats h4 {
  font-size: 30px; }

.o365-support-stats h5 {
  font-size: 20px; }

.support-stats {
  background: url("https://images.apps4.com/images/banner-top-sac-blue.jpg") center no-repeat;
  color: #ffffff;
  background-size: cover;
  padding: 60px 0px 30px; }
  .support-stats h6 {
    color: #3dabe8;
    padding-bottom: 10px; }
  .support-stats.vs-support-your-brand h5,
  .support-stats.vs-support-your-brand h6 {
    font-family: "MuseoSans-300", arial, sans-serif;
    color: #ffffff;
    display: inline-block;
    padding-bottom: 0px; }
  .support-stats.vs-support-your-brand h6 {
    font-size: 35px; }
  body.fr .vs-support-your-brand h6 {
    font-size: 35px; }

/****************** Media Queries *******************/
@media screen and (max-width: 375px) {
  .boxList .title {
    display: initial !important; }
  .boxList .xtra {
    font-size: 24px !important; } }

@media screen and (max-width: 768px) {
  .boxList .title {
    display: block;
    height: 124px; }
  .boxList .xtra {
    font-size: 19px; }
    .boxList .xtra > span {
      font-size: 15px; } }

/*====================================================
3. O365 2016 Business
====================================================*/
.o365-WBox {
  background: #ffffff; }

.plansFeats {
  text-align: center !important;
  font-family: "MuseoSans-700" !important;
  font-size: 15px !important;
  color: #025091; }
  .plansFeats a {
    text-decoration: underline; }
    .plansFeats a:hover {
      color: #7FCB15; }

.o365-FrameFix > .frame + .frame {
  top: -40px;
  position: relative; }

/****************** Media Queries *******************/
@media screen and (max-width: 603px) {
  .o365-FrameFix > .frame + .frame {
    top: 0;
    position: relative; } }

/*====================================================
4. O365 2016 Enterprise
====================================================*/
.ad-feature-Box {
  font-family: "MuseoSans-300";
  text-align: left;
  height: 110px; }
  .ad-feature-Box h3 {
    font-size: 26px;
    color: #3dabe8;
    margin-top: 0; }
    .ad-feature-Box h3 > p {
      display: block;
      font-size: 16px;
      color: #333333;
      padding-top: 10px;
      line-height: 20px; }

/*====================================================
5. OFFICE 365 CTA - 30 Days Free
====================================================*/
.o365-cta-hidden-info {
  position: absolute;
  display: none;
  background: #ffffff;
  font-family: "MuseoSans-300";
  width: 100%;
  -webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: display 1s ease-in;
  transition: display 1s ease-in;
  top: -287px; }
  .o365-cta-hidden-info ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .o365-cta-hidden-info li {
    color: #025091;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid #333333;
    line-height: 27px; }
  .o365-cta-hidden-info a {
    padding: 10px 15px;
    text-decoration: none;
    color: #333333;
    display: block; }
    .o365-cta-hidden-info a:hover {
      background-color: #e30613;
      color: #ffffff; }

.O365-trigger {
  position: absolute;
  bottom: 44px;
  right: 68px;
  margin: 0; }

.O365-the-trigger {
  width: 100%; }

p.O365-the-trigger {
  font-family: "MuseoSans-300", "arial";
  color: #ffffff;
  font-size: 18px;
  padding: 10px 10px 10px 15px;
  text-align: left;
  width: 270px;
  overflow: hidden;
  background: url("https://images.apps4.com/images/office-365/select-arrow.png") no-repeat right #e30613; }

.O365-trigger p.O365-the-trigger:hover {
  cursor: pointer; }

.O365-trigger:hover .o365-cta-hidden-info {
  display: block;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s; }

/****************** Media Queries *******************/
@media screen and (max-width: 375px) {
  p.O365-the-trigger {
    width: 174px !important;
    font-size: 14px !important;
    padding: 10px 0 10px 10px !important; }
  body.fr p.O365-the-trigger {
    width: 260px !important; } }

@media screen and (max-width: 320px) {
  p.O365-the-trigger {
    width: 230px !important; }
  body.fr p.O365-the-trigger {
    width: 230px !important; }
  .O365-trigger {
    bottom: 12px !important; } }

@media screen and (max-width: 414px) {
  .o365-cta-hidden-info {
    top: -288px;
    width: 260px;
    right: 0; }
  .o365-cta-hidden-info LI {
    font-size: 14px; }
  p.O365-the-trigger {
    width: 194px;
    font-size: 15px;
    padding: 10px 0 10px 12px; }
  .O365-trigger {
    position: absolute;
    bottom: 20px;
    right: 28px;
    margin: 0; } }

/*====================================================
6. OFFICE 365 Migration
====================================================*/
.o365-process-bg {
  background: url("https://images.apps4.com/images/svg-website/O365-World.svg") no-repeat center center, url("../img/partner-bg.jpg") repeat center center;
  background-size: 680px, auto;
  color: #ffffff;
  padding: 60px 0; }

#tab-building-nav.migration li a.current:after {
  content: " ";
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid #3dabe8;
  position: absolute;
  z-index: 9;
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: transparent;
  margin-left: -15px !important; }

#tabs-bar.migration ul {
  border-bottom: 2px solid #3dabe8; }

/*====================================================
7. Office 365 Advisor Program
====================================================*/
.box-advaisor {
  border: 3px solid #ffffff;
  display: inline-block;
  padding: 20px;
  letter-spacing: -1px; }

.red-offer {
  background: #3dabe8;
  display: inline-block;
  padding: 3px 0;
  width: 300px;
  font-family: "MuseoSans-700";
  font-size: 22px;
  color: #ffffff; }

.trans-mobile-view img {
  padding: 50px 0; }

.arrow-next:before {
  position: absolute;
  top: 34px;
  left: -50px;
  content: " ";
  background: url("https://images.apps4.com/images/office-365/o365-Advisor-arrow.svg") center center no-repeat;
  background-size: 60px;
  width: 98px;
  height: 70px; }

.sell-steps {
  background: url("https://images.apps4.com/images/office-365/o365-Advisor-arrowRepeat.svg");
  background-repeat: no-repeat;
  background-size: 69%;
  height: 100px;
  background-position: top center;
  padding-top: 43px; }

.advise-circle-blue,
.advise-circle-white {
  position: relative;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  border-radius: 999px;
  width: 200px;
  height: 200px; }
  .advise-circle-blue .percent,
  .advise-circle-white .percent {
    font-size: 70px;
    font-family: "MuseoSans-700";
    letter-spacing: -4px; }

.advise-circle-blue {
  background-color: #3dabe8;
  color: #ffffff; }
  .advise-circle-blue p {
    font-size: 20px;
    font-family: "MuseoSans-300";
    line-height: 22px; }
  .advise-circle-blue .percent {
    padding: 30px 0 0;
    margin-bottom: -12px; }

.advise-circle-white {
  background-color: #ffffff;
  color: #025091; }
  .advise-circle-white .percent {
    padding: 50px 0 0; }

@media screen and (max-width: 603px) {
  .arrow-next:before {
    display: none; }
  .sell-steps {
    background: none; }
  .trans-mobile-view {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
    .trans-mobile-view img {
      padding: 25px 40px; } }

.office-protect-module {
  background-image: url("https://images.apps4.com/images/office-365/office-protect-logo-bg.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat; }
  @media screen and (min-width: 768px) {
    .office-protect-module {
      background-size: 50%;
      background-position: 0% 40%; } }
  @media screen and (min-width: 992px) {
    .office-protect-module {
      background-size: 56%;
      background-position: 16% 70%; } }
  @media screen and (min-width: 1200px) {
    .office-protect-module {
      background-size: 26%;
      background-position: 30% 70%; } }

/*====================================================
NEW OFFICE 365 SECTION andy_november-9/15
====================================================*/
/********  Flip Cards ***********/
.oSMB-card-title {
  font-family: "MuseoSans-300";
  font-size: 24px;
  padding: 30px 0px 10px 0px;
  color: #025091; }

/********************************/
.oSMB-o365Experience {
  display: table;
  width: 100%;
  height: 100%; }
  .oSMB-o365Experience h4 {
    font-size: 36px;
    font-family: "MuseoSans-500";
    color: #025091; }
    .oSMB-o365Experience h4 > span {
      font-size: 22px;
      font-family: "MuseoSans-300";
      color: #3dabe8; }
  .oSMB-o365Experience p {
    font-size: 18px;
    color: #333333;
    font-family: "ProximaNova";
    padding-top: 20px; }

.container1 {
  display: table-cell;
  padding: 30px;
  width: 50%;
  vertical-align: middle; }

.container2 {
  display: table-cell;
  padding: 30px;
  width: 50%;
  vertical-align: middle; }

.oSMB-content {
  max-width: 450px; }

.oSMB-FR {
  float: right; }

.oSMB-FL {
  float: left; }

.md-bg-np {
  background-color: #e4ecf4; }

.db-hd {
  background: #025091;
  padding: 30px 0px;
  position: relative;
  text-align: center; }

.oSMB-compare-table {
  text-align: center;
  padding-bottom: 60px; }
  .oSMB-compare-table p {
    font-size: 14px; }

.flat-table .fa-check-circle {
  font-size: 32px; }

.flat-table .fa-times {
  font-size: 22px; }

/****************** best offer c-3 *******************/
.osm-Box {
  padding: 30px 5px 10px;
  text-align: center;
  font-family: "MuseoSans-300"; }
  .osm-Box h4 {
    font-size: 30px;
    color: #025091;
    font-family: "MuseoSans-700"; }
  .osm-Box h5 {
    text-align: center;
    font-size: 14px;
    line-height: 14px;
    color: #3dabe8;
    text-transform: capitalize;
    padding-bottom: 10px; }
  .osm-Box .wlBox-price {
    text-align: center;
    font-family: "MuseoSans-700";
    font-size: 42px;
    color: #025091; }
    .osm-Box .wlBox-price > span {
      color: #025091;
      font-size: 14px;
      font-weight: bold;
      margin: 0px; }
  .osm-Box ul {
    text-align: left; }
    .osm-Box ul > span {
      color: #D34345; }
    .osm-Box ul li {
      list-style: none;
      padding: 10px 0px 10px 30px; }
      .osm-Box ul li > span {
        color: #333333;
        font-weight: bold; }
        .osm-Box ul li > span > br {
          display: block;
          margin: 10px 0; }
    .osm-Box ul .divisor-ln-blue {
      height: 1px;
      background: #025091;
      width: 100%;
      margin: 20px 0;
      clear: both; }

.divisor-ln-blue {
  height: 1px;
  background: #025091;
  width: 100%;
  margin: 20px 0;
  clear: both; }

.oSMB-check {
  background: url(https://images.apps4.com/images/office-365/officeSMB/oSMB-check.gif) no-repeat left center;
  list-style-type: none; }

.oSMB-redX {
  background: url(https://images.apps4.com/images/office-365/officeSMB/oSMB-redX.gif) no-repeat left center;
  list-style-type: none; }

.oSMB-borderB {
  border-bottom: solid #d4d4d4 thin; }

.oSMB-borderT {
  border-top: solid #d4d4d4 thin; }

.oSMB-best-Offer {
  background: #025091;
  font-family: "MuseoSans-700";
  font-size: 20px;
  color: #ffffff;
  max-width: 320px;
  padding: 15px 0px;
  margin: -40px auto 0;
  position: relative;
  line-height: 24px; }
  .oSMB-best-Offer > p {
    margin: 0px;
    text-transform: uppercase; }

.oSMB-value {
  background: #025091 !important;
  margin: -20px auto 0;
  font-family: "MuseoSans-700";
  font-size: 14px;
  color: #ffffff;
  max-width: 320px;
  padding: 10px 0px;
  position: relative; }

/****************** ebook Pop **************************/
#slidersidein {
  background-color: transparent;
  position: fixed;
  bottom: 0;
  left: -525px;
  font-family: "MuseoSans-300";
  z-index: 10;
  max-width: 500px; }
  #slidersidein img {
    position: relative;
    right: -5px; }

.minified-slide-cta {
  left: -500px !important; }

#slidersidein .close {
  background: url("https://images.apps4.com/images/office-365/cta-promo-arrow.png") no-repeat top left;
  width: 38px;
  height: 56px;
  position: absolute;
  cursor: pointer;
  top: 41%;
  right: -25px;
  opacity: 1;
  z-index: 9;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg); }

#slidersidein.minified-slide-cta .close {
  -webkit-transform: rotate(-180deg) !important;
          transform: rotate(-180deg) !important; }

/***************** Media Queries ***********************/
@media screen and (max-width: 604px) {
  .disp-sect {
    display: none; }
  .container1 {
    width: initial;
    height: 250px; }
  .container2 {
    width: initial;
    height: 250px; }
  .oSMB-content {
    max-width: initial; }
  .oSMB-FR {
    float: left; }
  .oSMB-FL {
    float: left; }
  .oSMB-AR {
    text-align: center; }
  .oSMB-AL {
    text-align: center; }
  .oSMB-best-Offer {
    background: #025091;
    font-family: "MuseoSans-700";
    font-size: 14px;
    color: #ffffff;
    max-width: 380px;
    padding: 10px 0px;
    margin: 0px auto 0;
    position: relative; } }

@media screen and (max-width: 800px) {
  .no-sect800 {
    display: none; } }

@media screen and (max-width: 886px) {
  .min-height-flips {
    min-height: 700px; } }

/*====================================================
O365PACK TONY
====================================================*/
.box-opak {
  top: 90px;
  position: relative;
  font-size: 56px;
  display: block;
  max-width: 700px;
  margin: 0 auto !important;
  padding: 10px 35px 27px 35px;
  border: 3px solid #ffffff; }

.opak {
  background: url("https://images.apps4.com/images/svg-website/opack-header.jpg") center center no-repeat;
  color: #ffffff;
  background-size: cover; }

.max-width-hero {
  max-width: 730px; }

.opak-box-preview {
  font-size: 34px;
  font-family: "MuseoSans-700", arial, sans-serif;
  font-weight: normal;
  line-height: 38px;
  text-align: left;
  margin: 0 10px 0 -90px;
  padding: 0 0 30px; }

.opak-box-preview span {
  font-size: 14px;
  font-family: "MuseoSans-300", arial, sans-serif;
  font-weight: normal;
  display: block;
  line-height: 30px;
  margin: 0 0px; }

.logo-list {
  float: left;
  margin-right: 43px;
  margin-bottom: 10px;
  list-style: none;
  min-height: 50px; }

.plus-row {
  margin: 5px 0px 0px -90px;
  padding: 0px 0px 30px 0px;
  float: left;
  width: 100%; }

.opak-pricing {
  float: left;
  margin-left: -90PX; }

.opak-button {
  border-left: 4px solid #c00d0d;
  background-color: #e30613;
  color: #ffffff;
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 25px;
  letter-spacing: -2px;
  text-align: center;
  margin: 0;
  padding: 17px 0px 15px 0px; }

.opak-button:hover {
  border-left: 4px solid #e30613;
  background-color: #c00d0d; }

.opak-button-rvs {
  border-left: 4px solid #e30613;
  background-color: #ffffff;
  color: #e30613;
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 36px;
  letter-spacing: -2px;
  text-align: left;
  margin: 0;
  padding: 10px 0px 15px 25px; }

.opak-button-rvs p {
  position: relative;
  top: -17px;
  left: 15px;
  display: inline-block;
  font-family: "ProximaNova", arial, sans-serif;
  letter-spacing: 0px;
  font-size: 16px; }

/*
.white-list-box {
    background: $white;
    position: relative;
    padding: 0 20px;
    min-height: 525px;
    color: $grey; //    last edit
    margin: 0 auto;
    max-width: 380px;

	h4 {
	    font-family: "MuseoSans-300", arial, sans-serif;
	    font-size: 36px;
	    letter-spacing: -2px;
	    margin: 0;
	    color: $secondary;

		span {
		    font-family: "MuseoSans-300", arial, sans-serif;
		    font-size: 19px;
		    letter-spacing: -1px;
		}
	}

	h5, h6{
	    font-family: "ProximaNova", arial, sans-serif;
	    color: $primary;
	    margin: 0;
	    line-height: 26px;		
	}

	h5 {
	    font-size: 16px;
	    text-align: left;
	}

	h6 {
	    font-size: 15px;
	    text-align: center;
	}	

	p {
	    font-family: "ProximaNova", arial, sans-serif;
	    text-align: left;
	    margin: 0px 0px 20px 0px;
	    line-height: 26px;
	    font-size: 16px;
	}		
}
*/
.image-box-0365 {
  position: relative;
  top: -40px;
  left: -75px; }

.logo-list-contener {
  margin: 0px 0px 0px -90px;
  float: right; }

@media screen and (max-width: 875px) {
  .box-opak {
    max-width: 420px; }
  .box-opak span {
    font-size: 54px; }
  .box-frame {
    height: 850px; }
  .mq-875-box365 {
    width: 100%; }
  .mq-block {
    display: block; }
  .image-box-0365 {
    left: 0; }
  .mq-875-box-description {
    width: 100%; }
  .opak-box-preview {
    margin: 30px 20px 0 20px;
    text-align: center; }
  .ul-center {
    display: inline-block;
    margin: 0; }
  .logo-list {
    margin: 0 25px 0 25px; }
  .plus-row {
    margin: 5px 0px 0px 0px; }
  .opak-pricing {
    display: inline-block;
    margin: 0 auto; }
  .free-trial-btn {
    margin-left: 0px !important;
    display: inline-block; } }

@media screen and (max-width: 580px) {
  .box-frame {
    height: 880px !important; }
  .box-opak {
    max-width: 280px !important;
    top: 60px;
    padding: 10px 5px 10px 5px !important; }
  .box-opak span {
    font-size: 37px;
    top: 0px !important; }
  .logo-list {
    margin: 0 10px 0 20px; }
  .opak-hero-logo {
    width: 40px !important;
    top: -3px !important; }
  .opak-box-preview {
    font-size: 57px !important;
    line-height: 55px !important; }
  .opak-box-preview span {
    font-size: 25px !important; }
  .mq-875-box-description {
    width: 100%;
    top: -110px; }
  .image-box-0365 {
    width: 315px; } }

@media screen and (max-width: 480px) {
  #slidersidein {
    width: 100%;
    background: red;
    padding: 30px 0px 0px 0px;
    text-align: center; }
  #slidersidein .close {
    display: none;
    left: 50%;
    margin-left: -19px; }
  #slidersidein.minified-slide-cta .close {
    left: 0px; }
  .free-trial-btn {
    margin-left: 10px !important;
    float: left; }
  .box-frame {
    height: 990px !important; }
  .box-opak {
    max-width: 280px !important;
    top: 60px;
    padding: 10px 5px 10px 5px !important; }
  .box-opak span {
    font-size: 37px;
    top: 0px !important; }
  .logo-list {
    margin: 0 35px 10px 20px; }
  .opak-hero-logo {
    width: 40px !important;
    top: 3px !important; }
  .opak-box-preview {
    font-size: 40px !important;
    line-height: 40px !important;
    text-align: left; }
  .opak-box-preview span {
    font-size: 19px !important;
    line-height: 19px !important;
    text-align: left; }
  .mq-875-box-description {
    width: 100%;
    top: -110px; }
  .image-box-0365 {
    width: 315px; }
  .plus-row {
    margin: -10px 0px 0px 25px;
    width: inherit; }
  .pricing-row-content {
    text-align: center !important; }
  .pricing-row-content.primary {
    display: inline !important; }
  .pricing-row-content.second {
    display: inline !important; }
  .image-tabs {
    float: inherit !important;
    text-align: center !important;
    margin: 0px 0px 15px 0px !important; }
  .label-tabs {
    float: inherit !important;
    text-align: center !important; }
  .logo-list-contener {
    float: inherit; } }

body.fr .white-list-box h4 {
  font-size: 30px; }

body.fr .opak-box-preview {
  font-size: 32px; }

.w80 img:hover {
  width: 40%; }

.w60 img:hover {
  width: 32%; }

.w30 img:hover {
  width: 18%; }

/*===================================================
OFFICE 365
====================================================*/
.side-shadow {
  -webkit-box-shadow: 0 9px 0 0 rgba(255, 255, 255, 0), 0 -9px 0 0 rgba(255, 255, 255, 0), 12px 0 25px -4px rgba(11, 11, 11, 0.29), -12px 0 25px -4px rgba(11, 11, 11, 0.29);
          box-shadow: 0 9px 0 0 rgba(255, 255, 255, 0), 0 -9px 0 0 rgba(255, 255, 255, 0), 12px 0 25px -4px rgba(11, 11, 11, 0.29), -12px 0 25px -4px rgba(11, 11, 11, 0.29);
  z-index: 9;
  position: relative; }

.header-product {
  background: #025091;
  color: #ffffff;
  font-weight: normal; }
  .header-product.best-offer {
    background: #e30613; }
    .header-product.best-offer a {
      border: 3px solid #e30613; }
  .header-product h3 {
    font-family: "MuseoSans-500", arial, sans-serif;
    font-size: 38px;
    line-height: 36px;
    margin: 0;
    letter-spacing: -2px;
    padding: 45px 0 15px;
    font-weight: normal; }
    .header-product h3 + p {
      font-family: "MuseoSans-500", arial, sans-serif;
      font-size: 22px;
      line-height: 26px;
      padding: 20px 0 10px;
      margin: 0;
      letter-spacing: -1px; }
      .header-product h3 + p span {
        display: block; }
  .header-product a {
    display: inline-block;
    position: relative;
    border: 3px solid #025091;
    padding: 10px 20px;
    top: 23px;
    background: #ffffff;
    color: #333333;
    text-decoration: none;
    font-size: 16px; }
  .header-product p:last-of-type {
    margin: 0; }

.body-promo {
  padding: 60px 0 30px; }
  .body-promo p {
    text-align: center;
    font-size: 16px;
    font-family: "ProximaNova";
    margin: 0 0 5px; }
    .body-promo p.btn-buy-now-365 {
      position: absolute;
      bottom: -5px;
      width: 100%; }
      .body-promo p.btn-buy-now-365 > a {
        background: #025091;
        margin: 0 auto;
        display: inline-block;
        padding: 15px 45px;
        color: #ffffff;
        text-decoration: none; }
        .body-promo p.btn-buy-now-365 > a.best-offer {
          background: #e30613; }
  .body-promo .office-365-price {
    font-family: "MuseoSans-500", arial, sans-serif;
    font-size: 46px;
    color: #025091;
    margin: 25px 0 60px;
    letter-spacing: -2px; }
  .body-promo img {
    margin: 0 0 30px; }

.office365-apps4 {
  background: #025091 url("https://images.apps4.com/images/office-365/office-365-apps4.jpg") fixed center no-repeat;
  color: #ffffff;
  background-size: cover;
  padding: 60px 0;
  text-align: center; }
  .office365-apps4 h4 + p {
    font-size: 18px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    line-height: 26px;
    margin: 0 0 60px; }

.blue-list-box {
  background: #e4ecf4;
  position: relative;
  padding: 0 20px;
  min-height: 525px;
  color: #025091; }
  .blue-list-box h4 {
    font-family: "MuseoSans-700", arial, sans-serif;
    font-size: 24px;
    line-height: 36px;
    padding: 50px 0 25px;
    margin: 0; }
  .blue-list-box p {
    font-family: "MuseoSans-300", arial, sans-serif;
    color: #025091;
    text-align: center;
    margin: 0;
    line-height: 25.5px;
    font-size: 18px; }
  .blue-list-box .line-divisor {
    background: #e4ecf4; }

.office-365-slider {
  text-align: left; }
  .office-365-slider .copy {
    padding: 20px; }
  .office-365-slider h3 {
    font-size: 36px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    line-height: 36px;
    margin: 0; }
    .office-365-slider h3 + p {
      padding: 20px 0;
      margin: 0; }
  .office-365-slider .flexslider .c-50 {
    padding: 0 20px; }

.table-pricing-office-365 table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }
  .table-pricing-office-365 table tbody > tr td:first-child {
    font-size: 22px;
    color: #025091;
    font-family: "MuseoSans-300"; }
  .table-pricing-office-365 table tbody tr:first-child {
    background: #ffffff; }
  .table-pricing-office-365 table thead tr {
    background: #dae4ef; }
  .table-pricing-office-365 table tr {
    height: 82px; }

.table-pricing-office-365 table tr:nth-child(even) {
  background: #e4ecf4; }

.table-pricing-office-365 table span {
  display: block; }

.table-pricing-office-365 table tr td:first-child {
  text-align: left;
  width: 25%;
  padding: 20px; }
  .table-pricing-office-365 table tr td:first-child p {
    line-height: 20px;
    margin: 0; }

.table-pricing-office-365 thead th {
  text-transform: uppercase;
  padding: 20px 0;
  font-family: "MuseoSans-500";
  font-weight: normal;
  line-height: 22px;
  text-align: center;
  font-size: 16px; }

.table-pricing-office-365 table .blue-btn {
  padding: 10px 40px; }

.table-pricing-office-365 table tbody > tr td:first-child span {
  font-family: "MuseoSans-700"; }

.table-pricing-office-365 .footer-price {
  color: #025091;
  margin: 0 0 -10px;
  padding: 30px 0;
  font-family: "MuseoSans-300"; }
  .table-pricing-office-365 .footer-price span {
    font-size: 42px; }
    .table-pricing-office-365 .footer-price span + span {
      font-size: 16px;
      font-family: "ProximaNova";
      margin: -10px 0 20px; }

.mobile-view-office365 {
  margin: 0 auto;
  max-width: 680px;
  overflow: auto;
  padding: 0.7em;
  text-align: center; }
  .mobile-view-office365 .c-1 {
    background: #e4ecf4; }
  .mobile-view-office365 span {
    display: block; }
  .mobile-view-office365 h4 {
    font-family: "MuseoSans-500", arial, sans-serif;
    font-size: 32px;
    line-height: 36px;
    margin: 0;
    letter-spacing: -1px;
    padding: 30px 0 10px;
    font-weight: normal;
    color: #025091; }
  .mobile-view-office365 p {
    font-family: "MuseoSans-700";
    font-weight: normal;
    color: #025091;
    font-size: 16px;
    line-height: 32px; }

@media screen and (min-width: 768px) {
  .mobile-plan-office365 {
    display: none; } }

.office365-best-value {
  background: #ffffff;
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 24px;
  color: #e30613;
  font-weight: normal;
  padding: 10px;
  border-top: 5px solid #e30613;
  max-width: 320px;
  margin: -59px auto 0;
  position: relative; }

.banner-toolbox {
  padding: 3em 2em;
  margin: 0 0 2em 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  .banner-toolbox .banner-toolbox-col-1, .banner-toolbox .banner-toolbox-col-3 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%; }
    @media screen and (min-width: 992px) {
      .banner-toolbox .banner-toolbox-col-1, .banner-toolbox .banner-toolbox-col-3 {
        -ms-flex-preferred-size: 42%;
            flex-basis: 42%; } }
  .banner-toolbox .banner-toolbox-col-2 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%; }
    @media screen and (min-width: 992px) {
      .banner-toolbox .banner-toolbox-col-2 {
        -ms-flex-preferred-size: 16%;
            flex-basis: 16%; } }
  .banner-toolbox .show-desktop {
    display: none; }
    @media screen and (min-width: 992px) {
      .banner-toolbox .show-desktop {
        display: block; } }
  .banner-toolbox .show-mobile {
    display: block; }
    @media screen and (min-width: 992px) {
      .banner-toolbox .show-mobile {
        display: none; } }

/*====================================================
OFFICE 2016 PAGE
====================================================*/
#box-product-module {
  text-align: center; }
  @media screen and (min-width: 768px) {
    #box-product-module {
      text-align: left; } }
  #box-product-module .add-space.x2 {
    height: 20px; }
    @media screen and (min-width: 768px) {
      #box-product-module .add-space.x2 {
        height: 45px; } }
  #box-product-module .c-35 {
    text-align: center; }
  #box-product-module .content {
    margin-left: 0px; }
    @media screen and (min-width: 768px) {
      #box-product-module .content {
        margin: 0px 0px 0px 20px; } }
  #box-product-module .box-product {
    position: relative;
    max-width: 320px;
    margin: 0 auto; }
    @media screen and (min-width: 768px) {
      #box-product-module .box-product {
        max-width: inherit;
        margin: 0; } }
    #box-product-module .box-product:after {
      content: "+";
      position: absolute;
      font-size: 36px;
      color: #35a4dd;
      bottom: 65px;
      left: calc(100% - 50%);
      font-family: "ProximaNova"; }
  #box-product-module .promotion {
    position: absolute;
    width: 145px;
    height: 145px;
    background: #e30613;
    border-radius: 999px;
    top: -25px;
    left: -20px; }
    #box-product-module .promotion p {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      margin: 0;
      color: #ffffff;
      font-size: 38px;
      font-weight: normal;
      line-height: 36px;
      letter-spacing: -3px;
      font-family: "MuseoSans-500", arial, sans-serif; }
  #box-product-module .gadgets {
    text-align: left;
    max-width: 230px;
    margin: 0 auto;
    color: #333333;
    font-size: 22px;
    font-family: "MuseoSans-300", arial, sans-serif; }
    @media screen and (min-width: 768px) {
      #box-product-module .gadgets {
        margin: 0;
        max-width: inherit; } }
    #box-product-module .gadgets li {
      margin-right: 0px;
      margin-bottom: 20px;
      display: inline-block;
      font-size: 20px; }
      @media screen and (min-width: 768px) {
        #box-product-module .gadgets li {
          margin-right: 22px;
          margin-bottom: 20px; } }
      #box-product-module .gadgets li:last-child {
        margin-right: 0px; }
    #box-product-module .gadgets span {
      background: #e30613;
      color: #ffffff;
      border-radius: 999px;
      height: 62px;
      width: 62px;
      display: inline-block;
      text-align: center;
      line-height: 62px;
      font-size: 28px;
      vertical-align: middle; }
  #box-product-module .one-drive {
    border: 2px solid #35a4dd;
    padding: 10px 30px;
    margin: 35px 0px 0px 0px;
    border-radius: 49px;
    font-family: "MuseoSans-300";
    color: #35a4dd;
    font-size: 22px;
    display: inline-block; }
    #box-product-module .one-drive img {
      display: inline-block; }
  #box-product-module .box-module-copy h2 {
    color: #e30613;
    font-size: 42px;
    letter-spacing: -1px;
    font-family: "MuseoSans-300", arial, sans-serif; }
    #box-product-module .box-module-copy h2 + p:first-of-type {
      color: #333333;
      font-size: 22px;
      letter-spacing: -.5px;
      font-family: "MuseoSans-300", arial, sans-serif;
      line-height: 32px; }
  #box-product-module .btn-user-month {
    margin: 0 auto;
    border: 2px solid #e30613;
    display: table;
    width: 85%;
    font-family: "MuseoSans-300", arial, sans-serif; }
    @media screen and (min-width: 768px) {
      #box-product-module .btn-user-month {
        margin: 0; } }
    #box-product-module .btn-user-month:after {
      clear: both;
      content: "";
      display: table; }
    #box-product-module .btn-user-month div {
      float: none; }
    #box-product-module .btn-user-month a {
      display: table-row;
      color: #e30613; }
    #box-product-module .btn-user-month p {
      margin: 0;
      font-size: 48px;
      font-family: "MuseoSans-300", arial, sans-serif; }
    #box-product-module .btn-user-month span {
      font-size: 18px; }
    #box-product-module .btn-user-month .copy {
      width: 50%;
      background: #ffffff;
      display: table-cell;
      text-align: center;
      vertical-align: middle;
      -webkit-transition: all .34s ease-in;
      transition: all .34s ease-in; }
      #box-product-module .btn-user-month .copy div {
        display: inline-block; }
    #box-product-module .btn-user-month .cta {
      width: 30%;
      background: #e30613;
      display: table-cell;
      text-align: center;
      vertical-align: middle;
      -webkit-transition: all .24s ease-out;
      transition: all .24s ease-out; }
      #box-product-module .btn-user-month .cta span {
        font-size: 22px;
        color: #ffffff;
        font-family: "MuseoSans-500", arial, sans-serif; }
    #box-product-module .btn-user-month:hover .copy {
      background: #e30613;
      color: #ffffff; }
    #box-product-module .btn-user-month:hover .cta {
      background: #ffffff; }
      #box-product-module .btn-user-month:hover .cta span {
        color: #e30613; }
  #box-product-module small {
    margin-top: 10px;
    display: inline-block;
    letter-spacing: -.2px; }
  #box-product-module .onedrive-copy {
    text-align: center;
    padding: 0px 30px;
    margin-bottom: 0px; }
    @media screen and (min-width: 768px) {
      #box-product-module .onedrive-copy {
        text-align: left; } }

.vector-list {
  list-style: none;
  padding-left: 15px; }
  .vector-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
    font-family: "MuseoSans-300", arial, sans-serif;
    font-size: 17px;
    color: #2B2B2B; }
    .vector-list li.yes:before {
      content: "";
      background: url("https://images.apps4.com/images/svg-website/green-checkmark.svg") no-repeat center top;
      position: absolute;
      width: 25px;
      height: 25px;
      left: -20px;
      top: 0px; }

.devices {
  text-align: center;
  color: #025091;
  font-family: "ProximaNova-Bold";
  text-transform: uppercase; }
  .devices li {
    display: inline-block;
    margin: 7px; }
    .devices li:last-child {
      margin-right: 0; }

@media screen and (max-width: 766px) {
  .vm-demo [class*="c-"] {
    width: 100%;
    text-align: center; } }

.data-holder {
  padding: 30px 0; }
  .data-holder + h2 {
    margin-top: 0; }
  .data-holder .table-row {
    display: table;
    table-layout: fixed;
    width: 100%; }
  .data-holder .table-cell {
    display: table-cell;
    background: rgba(2, 80, 145, 0.1);
    color: #025091;
    font-size: 13px;
    padding: 20px; }
    .data-holder .table-cell p,
    .data-holder .table-cell a {
      margin: 0;
      line-height: 18px !important;
      display: block;
      font-family: 'MuseoSans-300It';
      font-size: 13px;
      color: #025091; }
      .data-holder .table-cell p:first-child,
      .data-holder .table-cell a:first-child {
        font-family: 'MuseoSans-700'; }
  .data-holder + h3 {
    margin-top: 0; }

/*===================================================
ONLINE BACKUP STYLES
====================================================*/
.price-symbol {
  position: absolute;
  bottom: 44px;
  font-size: 28px;
  left: 12px; }

output.price {
  font-size: 36px;
  position: relative;
  top: -23px;
  left: 15px;
  line-height: 42px; }

.unit {
  position: absolute;
  bottom: 9px;
  right: 3px;
  font-size: 16px; }

.n-input {
  border: none;
  text-align: right;
  width: 100%;
  font-size: 36px;
  position: relative;
  background: transparent;
  top: -15px; }

.rangeslider,
.rangeslider__fill {
  display: block;
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px; }

.rangeslider {
  background: #ffffff;
  position: relative; }

.rangeslider--horizontal {
  height: 12px;
  width: 100%; }

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%; }

.rangeslider--disabled {
  opacity: 0.4; }

.rangeslider__fill {
  background: -webkit-gradient(linear, left top, right top, from(#6cceff), to(#066cc1));
  background: linear-gradient(90deg, #6cceff, #066cc1);
  position: absolute; }

.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%; }

.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%; }

/*
Doesnt seem to be used - TO BE REMOVED ?
//Images accordeon
.accordeon-frame {
    position: relative;
    z-index: 0;
    overflow: hidden;
    .text-column {
        width: 100%;
        @media screen and (min-width: 768px) {
            width:50%;
        }
    }
    .accordeon-column {
        position: relative;
        z-index: -1;
        width: 100%;
        @media screen and (min-width: 768px) {
            width:50%;
        }
        .display-images-accordeon {
            position: relative;
            margin: 0 auto;
            z-index: 0;
            text-align: center;
            a {
                display: block;
                position: relative;
                max-width: 250px;
                margin: 0 auto;
                img {
                    width: 100%;
                    left: 0;
                    top: 0;
                    display: block;
                    text-align: center; //box-shadow: 0 3px 38px rgba(0,0,0,0.3), 0 -5px 12px rgba(0,0,0,0.22);
                    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
                    &.img-1 {
                        position: relative;
                        z-index: 0;
                    }
                    &.img-2 {
                        position: absolute;
                        z-index: -2;
                        transform: rotate(0) scale(0.7) rotate(-10deg) translateX(-40%) translateY(0);
                        transition: transform 500ms ease;
                    }
                    &.img-3 {
                        position: absolute;
                        z-index: -1;
                        transform: rotate(0) scale(0.7) rotate(10deg) translateX(40%) translateY(0);
                        transition: transform 500ms ease;
                    }
                }
                &:hover {
                    img {
                        &.img-2 {
                            transform: rotate(-25deg) scale(0.7) translateX(-50%) translateY(-25%);
                        }
                        &.img-3 {
                            transform: rotate(25deg) scale(0.7) translateX(50%) translateY(-25%);
                        }
                    }
                }
            }
        }
    }
}
*/
.resell-page .inner-menu .macro-menu .cta-inner-menu a {
  background-color: #e30613; }
  .resell-page .inner-menu .macro-menu .cta-inner-menu a:hover {
    background-color: #c00d0d; }

.resell-page .product-presentation-icons {
  font-family: "MuseoSans-300", arial, sans-serif; }
  .resell-page .product-presentation-icons div.icon {
    height: 104px;
    margin-bottom: 10px; }
  .resell-page .product-presentation-icons p.text {
    font-size: 1em; }
  .resell-page .product-presentation-icons.business-scenarios {
    max-width: 70%;
    padding-top: 0; }
    .resell-page .product-presentation-icons.business-scenarios div.icon {
      position: relative;
      text-align: center;
      height: 74px; }
      .resell-page .product-presentation-icons.business-scenarios div.icon img {
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); }

@-webkit-keyframes floatingvone {
  0% {
    background-position: right;
    -webkit-transform: translate(0) rotate(0) scale(1);
            transform: translate(0) rotate(0) scale(1); }
  50% {
    background-position: left center;
    -webkit-transform: translate(-10%) rotate(10deg) scale(0.75);
            transform: translate(-10%) rotate(10deg) scale(0.75); }
  100% {
    background-position: right;
    -webkit-transform: translate(0) rotate(0) scale(1);
            transform: translate(0) rotate(0) scale(1); } }

@keyframes floatingvone {
  0% {
    background-position: right;
    -webkit-transform: translate(0) rotate(0) scale(1);
            transform: translate(0) rotate(0) scale(1); }
  50% {
    background-position: left center;
    -webkit-transform: translate(-10%) rotate(10deg) scale(0.75);
            transform: translate(-10%) rotate(10deg) scale(0.75); }
  100% {
    background-position: right;
    -webkit-transform: translate(0) rotate(0) scale(1);
            transform: translate(0) rotate(0) scale(1); } }

@-webkit-keyframes floatingvtwo {
  0% {
    background-position: right;
    -webkit-transform: translate(0) scale(1);
            transform: translate(0) scale(1); }
  50% {
    background-position: left center;
    -webkit-transform: translate(20%) scale(1.1);
            transform: translate(20%) scale(1.1); }
  100% {
    background-position: right;
    -webkit-transform: translate(0) scale(1);
            transform: translate(0) scale(1); } }

@keyframes floatingvtwo {
  0% {
    background-position: right;
    -webkit-transform: translate(0) scale(1);
            transform: translate(0) scale(1); }
  50% {
    background-position: left center;
    -webkit-transform: translate(20%) scale(1.1);
            transform: translate(20%) scale(1.1); }
  100% {
    background-position: right;
    -webkit-transform: translate(0) scale(1);
            transform: translate(0) scale(1); } }

@-webkit-keyframes floatingvthree {
  0% {
    background-position: bottom;
    -webkit-transform: translate(30%) scale(1);
            transform: translate(30%) scale(1); }
  50% {
    background-position: left center;
    -webkit-transform: translate(20%) scale(1.1);
            transform: translate(20%) scale(1.1); }
  100% {
    background-position: bottom;
    -webkit-transform: translate(30%) scale(1);
            transform: translate(30%) scale(1); } }

@keyframes floatingvthree {
  0% {
    background-position: bottom;
    -webkit-transform: translate(30%) scale(1);
            transform: translate(30%) scale(1); }
  50% {
    background-position: left center;
    -webkit-transform: translate(20%) scale(1.1);
            transform: translate(20%) scale(1.1); }
  100% {
    background-position: bottom;
    -webkit-transform: translate(30%) scale(1);
            transform: translate(30%) scale(1); } }

.customers-hero {
  position: relative;
  padding: 4em 0 4em;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  z-index: 0;
  overflow: hidden; }
  .customers-hero .threats-everywhere {
    position: absolute;
    width: 50%;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    overflow: hidden;
    display: none; }
    @media screen and (min-width: 1024px) {
      .customers-hero .threats-everywhere {
        display: block; } }
    .customers-hero .threats-everywhere .skull {
      background-image: url("https://images.apps4.com/images/online-backup/reseller-page/skull.svg");
      background-repeat: no-repeat;
      background-position: right;
      width: 40px;
      height: 40px;
      position: absolute;
      -webkit-animation-duration: 5s;
              animation-duration: 5s;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite;
      opacity: 0.34; }
      .customers-hero .threats-everywhere .skull:nth-child(1), .customers-hero .threats-everywhere .skull:nth-child(3), .customers-hero .threats-everywhere .skull:nth-child(5), .customers-hero .threats-everywhere .skull:nth-child(7), .customers-hero .threats-everywhere .skull:nth-child(9), .customers-hero .threats-everywhere .skull:nth-child(11), .customers-hero .threats-everywhere .skull:nth-child(13) {
        -webkit-animation-name: floatingvone;
                animation-name: floatingvone; }
      .customers-hero .threats-everywhere .skull:nth-child(2), .customers-hero .threats-everywhere .skull:nth-child(4), .customers-hero .threats-everywhere .skull:nth-child(6), .customers-hero .threats-everywhere .skull:nth-child(8), .customers-hero .threats-everywhere .skull:nth-child(10), .customers-hero .threats-everywhere .skull:nth-child(12), .customers-hero .threats-everywhere .skull:nth-child(14), .customers-hero .threats-everywhere .skull:nth-child(16), .customers-hero .threats-everywhere .skull:nth-child(18), .customers-hero .threats-everywhere .skull:nth-child(20) {
        -webkit-animation-name: floatingvtwo;
                animation-name: floatingvtwo; }
      .customers-hero .threats-everywhere .skull:nth-child(15), .customers-hero .threats-everywhere .skull:nth-child(17), .customers-hero .threats-everywhere .skull:nth-child(19) {
        -webkit-animation-name: floatingvthree;
                animation-name: floatingvthree; }
    .customers-hero .threats-everywhere.group1 {
      left: 0;
      right: inherit;
      -webkit-transform: scale(-1, 1);
              transform: scale(-1, 1); }

.rangeslider__handle {
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g");
  background-size: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border-radius: 50%; }
  .rangeslider__handle:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
    background-size: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.13)), to(rgba(255, 255, 255, 0)));
    background-image: linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
    border-radius: 50%; }

.rangeslider__handle:active,
.rangeslider--active .rangeslider__handle {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.12)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12)); }

.rangeslider--horizontal .rangeslider__handle {
  top: -9px;
  touch-action: pan-y;
  -ms-touch-action: pan-y; }

.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x; }

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9); }

#range .c-20:first-of-type {
  position: relative;
  right: -20px; }

#range .c-20:last-of-type {
  position: relative;
  left: -15px; }

@media (max-width: 545px) {
  .price--range_online-backup .c-25,
  .price--range_online-backup .c-25 {
    width: 100%; } }

.icones--online-backup .c-4 {
  min-height: 275px; }

@media (max-width: 680px) {
  .online-backup-vs-inhouse .c-45,
  .online-backup-vs-inhouse .c-45.push-1 {
    width: 100%; }
  .online-backup-vs-inhouse .c-45.push-1 {
    margin: 0; }
  .is-available--list,
  .not-available--list {
    max-width: 320px;
    margin: 0 auto; }
  .price--range_online-backup .c-75 {
    width: 100%; } }

/** EBOOK MODULE - Allowing Marketo fields to be horizontal using flex
*** Example Online Backup Resell : https://www.apps4.com/fr/revendre-sauvegarde-en-ligne/
*** Dominic Ogden
***/
@media screen and (min-width: 992px) {
  .ebook--module.ob-resell form.mktoForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .ebook--module.ob-resell form.mktoForm .gdpr-info {
      margin-bottom: 1rem; }
    .ebook--module.ob-resell form.mktoForm .mktoFormRow:not(.gdpr-info) {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .ebook--module.ob-resell form.mktoForm .mktoButtonRow {
      width: 100%; }
    .ebook--module.ob-resell form.mktoForm .mktoFieldDescriptor.mktoFormCol {
      width: 100%; }
    .ebook--module.ob-resell form.mktoForm label[for=Email] {
      padding-bottom: 20px; } }

/*====================================================
TOP ICONS 3 COLUMNS
====================================================*/
.top--icon {
  border: 2px solid #025091;
  min-height: 320px;
  padding: 25px;
  position: relative;
  margin-top: 80px; }
  .top--icon img {
    position: absolute;
    top: -62.5px;
    left: 50%;
    margin-left: -62.5px;
    background: white;
    border: 10px solid white; }
  .top--icon h5 {
    padding: 50px 0 0; }

body.fr .top--icon-holder .section-title {
  font-size: 26px; }

body.fr .top--icon {
  min-height: 350px; }

.vector-arrow-icon svg {
  vertical-align: text-bottom;
  width: 18px;
  height: 18px; }

.vector-arrow-icon .white-board-user .cls-1,
.vector-arrow-icon .bag-of-money-icon .cls-1,
.vector-arrow-icon .migration-db-icon .cls-1,
.vector-arrow-icon .phone-support-user .cls-1 {
  fill: #326295; }

.vector-arrow-icon .white-board-user .cls-2,
.vector-arrow-icon .bag-of-money-icon .cls-2,
.vector-arrow-icon .migration-db-icon .cls-2,
.vector-arrow-icon .phone-support-user .cls-2 {
  fill: #94c8ef; }

.vector-arrow-icon .dashed-user .cls-1,
.vector-arrow-icon .dashed-user .cls-2,
.vector-arrow-icon .dashed-user .cls-3,
.vector-arrow-icon .dashed-user .cls-4 {
  fill: none;
  stroke: #025091;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.16px; }

.vector-arrow-icon .dashed-user .cls-1 {
  stroke-dasharray: 3.78 3.78; }

.vector-arrow-icon .dashed-user .cls-3 {
  stroke-dasharray: 4.12 4.12; }

.vector-arrow-icon .dashed-user .cls-4 {
  stroke-dasharray: 3.49 3.49; }

.vector-arrow-icon .dashed-user .cls-5 {
  fill: #6fa8db; }

.vector-arrow-icon .white-board-user,
.vector-arrow-icon .bag-of-money-icon,
.vector-arrow-icon .phone-support-user,
.vector-arrow-icon .dashed-user {
  max-width: 18px;
  margin-right: 7px; }

.vector-arrow-icon .migration-db-icon {
  max-width: 26px; }

/*.cube-play {
	padding: 10px 75px 10px 80px;
}*/
/*====================================================
MEDIA QUERIES NEW PARTNER SECTION
====================================================*/
@media (max-width: 768px) {
  .top--icon-holder {
    max-width: 320px;
    margin: 80px auto 0; }
    .top--icon-holder:nth-child(n+2) {
      margin-top: 80px; }
  .solid-blue-bg .c-60 {
    width: 100%; } }

@media (min-width: 911px) {
  .c-40 [class^="sku-"] .section-title {
    text-align: left; } }

@media (max-width: 910px) {
  .sku-module .h--align {
    position: static;
    -webkit-transform: inherit;
            transform: inherit;
    max-width: 100%;
    text-align: center; }
  .c-40 [class^="sku-"] {
    text-align: center; } }

@media (max-width: 880px) {
  .arrow-tabbed {
    max-width: 100%; }
  .arrow-tabbed li:before,
  .arrow-tabbed li:after {
    display: none; }
  .arrow-tabbed li {
    border-right-width: 1px;
    border-right-color: #eaeaea;
    border-right-style: solid; } }

.border-box {
  border: 1px solid white;
  padding: 24px 15px;
  position: relative; }
  .border-box .orange-btn {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
  .border-box p {
    margin-bottom: 15px; }
  .border-box .featured {
    padding: 7px 15px 7px 20px;
    margin-right: 14px;
    background: #e30613;
    font-family: 'MuseoSans-700'; }

.video-block {
  background: #1B497B;
  background-size: cover;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  display: block;
  opacity: 1;
  z-index: 0; }

.video-addon {
  overflow: hidden; }
  .video-addon .gradient-black-filter:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#0262a6), to(#025091));
    background-image: linear-gradient(to right, #0262a6, #025091);
    opacity: .9;
    z-index: 1; }
  .video-addon .play-movie {
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .video-addon.holder-blocks {
    max-height: 380px;
    height: 380px; }

/*===================================================
apps4 PARTNER VIDEO BACKGROUND
====================================================*/
.partner-videobg {
  background: #025091 url("../img/partner-videobg.jpeg") no-repeat center center fixed;
  padding: 80px 0 40px;
  text-align: center;
  background-size: cover; }
  .partner-videobg h3 {
    font-size: 46px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    line-height: 60px;
    margin: 0 10px;
    color: #ffffff; }
  .partner-videobg .double-title span {
    font-size: 24px;
    font-family: "MuseoSans-300", arial, sans-serif;
    font-weight: normal;
    display: block;
    line-height: 40px; }
  .partner-videobg h4 {
    font-family: "MuseoSans-500";
    font-size: 22px;
    color: #ffffff;
    padding: 15px 10px 60px; }

/*===================================================
apps4 PARTNERS MODULE
====================================================*/
.apps4-partners-section {
  background: #025091 url("../img/partner-bg.jpg") repeat center center;
  padding: 60px 0;
  text-align: center;
  position: relative; }
  .apps4-partners-section span {
    color: #ffffff !important; }
  .apps4-partners-section .register-button {
    color: #ffffff;
    padding: 14px 60px;
    font-size: 22px;
    text-decoration: none; }

.apps4-partners-stats img {
  margin: 0; }

.box-partner {
  border: 3px solid #ffffff;
  display: inline-block;
  letter-spacing: -1px;
  padding: 10px 30px;
  margin: 20px 0 0; }
  .box-partner span.bold-light-blue {
    color: #ffffff;
    font-family: 'MuseoSans-700', arial, sans-serif; }

/*===================================================
apps4 BEST PARTNER MODULE
====================================================*/
.apps4-best-partner {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative; }
  .apps4-best-partner h3 {
    font-size: 46px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    line-height: 60px;
    text-align: center;
    margin: 0 10px;
    color: #025091; }
  .apps4-best-partner .double-title span {
    font-size: 24px;
    font-family: "MuseoSans-300", arial, sans-serif;
    font-weight: normal;
    display: block;
    line-height: 40px; }
  .apps4-best-partner h4 {
    font-family: "MuseoSans-500";
    font-size: 26px;
    color: #025091;
    padding: 30px 0 60px; }
  .apps4-best-partner .blue-btn {
    padding: 20px 60px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-size: 16px; }

.best-in-class {
  text-align: left; }
  .best-in-class p {
    font-family: "MuseoSans-300";
    font-size: 28px;
    color: #025091;
    letter-spacing: -1px; }

.partner-list {
  padding: 30px 0; }
  .partner-list li {
    font-family: "ProximaNova";
    color: #333333;
    list-style: none;
    background: transparent url("https://images.apps4.com/images/website_images/blue_check.png") left no-repeat;
    padding: 15px 50px 0;
    min-height: 50px;
    margin: 0px 0px 10px 0px; }
    .partner-list li.no-icon {
      color: #025091;
      min-height: 60px;
      border-bottom: 1px solid #d4d4d4;
      padding: 10px 0;
      background: none; }

.partner-list-ordered {
  font-family: MuseoSans-700, arial, sans-serif;
  font-size: 22px;
  padding: 0 20px 0 60px; }

.partner-product {
  background: #dae4ef; }
  .partner-product h3 {
    font-size: 38px;
    font-family: "MuseoSans-700", arial, sans-serif;
    padding: 30px 0 0;
    margin: 0 10px; }
  .partner-product h4 {
    font-family: "MuseoSans-300";
    font-size: 26px;
    color: #025091;
    padding: 5px 0 40px;
    margin: 0 10px; }
  .partner-product hr {
    border: 1px solid #d4d4d4;
    margin: 0 0 30px; }

.s-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 10px 0 rgba(11, 11, 11, 0.1);
          box-shadow: 0 0 10px 0 rgba(11, 11, 11, 0.1); }
  .s-table thead {
    background-color: #025091;
    color: #ffffff; }
    .s-table thead tr td {
      padding: 18px;
      font-family: "MuseoSans-700", arial, sans-serif;
      text-transform: uppercase;
      font-size: 16px; }
  .s-table tbody tr:nth-child(odd) {
    background: #d4d4d4; }
  .s-table tbody tr:nth-child(even) {
    background: #ffffff; }
  .s-table tbody td {
    padding: 16px;
    font-family: "MuseoSans-500";
    color: #025091;
    font-size: 15px; }
    .s-table tbody td:first-of-type {
      text-transform: uppercase;
      font-size: 14px; }

.table-office365-resellers .mobile-view {
  display: none; }

.apps4-icon-module {
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -70px;
  padding: 0 0 60px; }

/*===================================================
PARTNER QUICKLY PROFIT
====================================================*/
.partner-quickly-profit {
  background: #025091 url("../img/partner-profit-bg.jpg") top center no-repeat fixed;
  text-align: center;
  padding: 60px 0 80px;
  /*.product-quote {
        color: $white;
        font-size: 28px;
        line-height: inherit;
    }*/ }
  .partner-quickly-profit span {
    color: #ffffff; }
  .partner-quickly-profit .featured-phone-number {
    color: #ffffff; }
  .partner-quickly-profit img {
    padding: 60px 30px 30px; }

p.picture-legend {
  font-family: "MuseoSans-300";
  color: #ffffff;
  font-size: 19px;
  margin: 30px 20px 40px; }

/*===================================================
PARTNER ENABLEMENT TOP CONTAINER
====================================================*/
.partner-free-of-charge {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative; }
  .partner-free-of-charge .partner-list li {
    min-height: 40px;
    line-height: 20px;
    padding: 10px 50px 0; }

.intro-list {
  font-family: "MuseoSans-700", arial, sans-serif;
  font-size: 21px;
  color: #025091; }
  .intro-list.light {
    font-family: "MuseoSans-300", arial, sans-serif; }

.choose-program p {
  font-family: "MuseoSans-500", arial, sans-serif;
  font-size: 22px;
  color: #025091;
  padding: 0 0 10px; }

.choose-program p:nth-child(2) {
  font-family: "ProximaNova";
  color: #333333;
  font-size: 20px;
  padding: 0 0 60px; }

/*===================================================
PARTNER TABLE COMPARE PLANS
====================================================*/
.cols-plans h3 {
  padding: 0; }

.compare-table.box-plans {
  padding: 0 0 60px; }
  .compare-table.box-plans:after {
    content: "";
    display: table;
    clear: both; }

.compare-column.box-plans {
  padding: 0 20px 45px;
  height: 100%;
  min-height: 460px; }
  .compare-column.box-plans h3 {
    padding: 40px 0 0; }
  .compare-column.box-plans .blue-ghost-btn {
    padding: 7px 25px; }

p.petit-note {
  display: block;
  font-family: "ProximaNova";
  font-size: 15px;
  color: #025091;
  margin: 20px 0 30px; }

/*===================================================
apps4 PARTNERS BOX PRODUCT MODULE
====================================================*/
.apps4-partners-products {
  background: #e4ecf4;
  padding: 60px 0 20px;
  text-align: center;
  position: relative; }

.cta-details {
  position: absolute;
  bottom: -18px;
  width: 100%;
  left: 0;
  margin: 0px; }

.cta-details-section {
  position: absolute;
  bottom: -30px;
  width: 100%;
  left: 0;
  z-index: 9;
  margin: 0; }
  .cta-details-section .blue-btn {
    padding: 25px 30px 25px 95px;
    position: relative; }
    .cta-details-section .blue-btn:hover:before {
      background: url("http://sanboxmkt.apps4.com/icon_calculator-xs.png") center center no-repeat #025091; }
    .cta-details-section .blue-btn:before {
      content: " ";
      top: 0;
      left: 0;
      width: 75px;
      height: 75px;
      position: absolute;
      background: url("http://sanboxmkt.apps4.com/icon_calculator-xs.png") center center no-repeat #7FCB15;
      -webkit-transition: background-color 0.14s ease 0s;
      transition: background-color 0.14s ease 0s; }

.icon-white-box {
  position: absolute;
  top: 0;
  left: 50%;
  height: 105px;
  width: 105px;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%); }

/*===================================================
PARTNER RESELL CLOUD SERVICES
====================================================*/
.resell-cloud-services {
  background: #ffffff url("../img/resell-cloud.jpg") no-repeat center center fixed;
  padding: 60px 0;
  text-align: center;
  text-transform: uppercase;
  background-size: cover; }
  .resell-cloud-services.azure-services {
    background: #ffffff url("https://images.apps4.com/images/banners/azure-services-background.jpg") no-repeat center center fixed;
    background-size: cover; }
  .resell-cloud-services .section-title {
    font-size: 41px; }
  .resell-cloud-services span {
    color: #ffffff; }
  .resell-cloud-services .cf-tablet:after {
    content: "";
    display: none;
    clear: both; }
  .resell-cloud-services .cta-combo {
    padding: 30px 0 0; }

.resell-blue-box {
  background: rgba(2, 80, 145, 0.5);
  padding: 30px 0;
  min-height: 375px; }
  .resell-blue-box h3 {
    font-size: 21px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    text-align: center;
    margin: 0;
    color: #ffffff;
    padding: 20px 0 0; }
  .resell-blue-box p {
    font-family: "ProximaNova";
    font-size: 16px;
    color: #ffffff;
    padding: 0; }

/*===================================================
PARTNER PERFORMANCE CLOUD MODULE
====================================================*/
.benefits-arrow {
  padding: 30px 0;
  border-bottom: 10px solid #7FCB15;
  position: relative;
  background: #025091 url("../img/bluebg.jpg") no-repeat center center fixed;
  text-align: center;
  color: #ffffff;
  font-family: "MuseoSans-500", arial, sans-serif;
  font-size: 28px;
  line-height: 40px; }
  .benefits-arrow:after {
    content: " ";
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 30px solid #7FCB15;
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -60px;
    z-index: 9; }

.benchmark-content {
  background: #e4ebf4;
  padding: 0 0 20px;
  position: relative; }
  .benchmark-content > .white-box-benchmark {
    background: #ffffff;
    padding: 90px 60px 40px;
    position: relative;
    text-align: center; }
  .benchmark-content h2 {
    font-size: 46px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    line-height: 50px;
    text-align: center;
    margin: 0;
    color: #025091; }
    .benchmark-content h2 span {
      font-size: 24px;
      font-family: "MuseoSans-300", arial, sans-serif;
      font-weight: normal;
      display: block;
      line-height: 40px; }
  .benchmark-content h3,
  .benchmark-content h5 {
    font-size: 30px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    line-height: 30px;
    margin: 0;
    text-align: center;
    color: #025091; }
  .benchmark-content h5 {
    padding: 30px 0 60px; }
  .benchmark-content .centered-img {
    display: block;
    margin: 30px auto; }
  .benchmark-content h4 {
    font-size: 22px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    line-height: 22px;
    margin: 0;
    color: #025091;
    padding: 30px 0; }
  .benchmark-content p {
    font-family: "ProximaNova", arial, sans-serif;
    color: #d4d4d4;
    font-size: 16px;
    line-height: 24px; }
  .benchmark-content .white-box-content {
    min-height: 350px; }
    .benchmark-content .white-box-content p {
      line-height: 22px; }
    .benchmark-content .white-box-content .cta-details {
      line-height: 18px; }

.big-btn {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  z-index: 9;
  text-align: center; }

.large-blue-btn {
  display: inline-block;
  background: #7FCB15;
  color: #ffffff;
  padding: 16px 30px;
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 25px; }
  .large-blue-btn:hover {
    background: #025091; }

.line-arrow {
  padding: 60px 0 10px; }

.clouds {
  padding: 60px 0 55px;
  background: #025091 url("../img/clouds.jpg") no-repeat center center fixed;
  text-align: center;
  background-size: cover; }
  .clouds h4 {
    font-size: 24px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    line-height: 24px;
    margin: 0;
    text-align: left;
    color: #ffffff;
    padding: 0 0 30px; }
  .clouds p {
    font-family: "ProximaNova";
    font-size: 16px;
    color: #ffffff;
    line-height: 18px;
    text-align: left;
    padding: 0 0 34px; }
  .clouds .section-title {
    padding: 0 0 45px; }

.cloud-features {
  padding: 60px 0;
  text-align: center;
  background: #e4ecf4; }
  .cloud-features .section-title {
    color: #025091;
    padding: 0 0 30px; }

/*===================================================
PARTNER VIP TECH SUPPORT
====================================================*/
.vip-tech-support {
  background: #dae4ef;
  text-align: center;
  padding: 60px 0; }
  .vip-tech-support h4 {
    font-size: 16px;
    font-family: "MuseoSans-500", arial, sans-serif;
    font-weight: normal;
    text-align: center;
    margin: 0;
    color: #025091;
    padding: 20px 0 30px; }
  .vip-tech-support ul {
    list-style: none; }
    .vip-tech-support ul li {
      font-family: "ProximaNova";
      font-size: 16px;
      color: #025091;
      padding: 10px 0; }
  .vip-tech-support .cta-combo {
    margin: 30px 0 0; }

/*===================================================
PARTNER ADVISOR
====================================================*/
.dotted {
  border: 2px dashed #e30613;
  padding: 5px 5px 30px;
  margin: 0 auto;
  max-width: 1040px;
  position: relative; }
  .dotted .promo-flag {
    background: #e30613;
    padding: 5px;
    font-size: 20px;
    color: #ffffff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 235px;
    top: -20px;
    font-family: "MuseoSans-300", arial, sans-serif; }
  .dotted h3 {
    padding-top: 20px;
    padding-bottom: 0px; }
    .dotted h3 + p {
      font-size: 18px;
      letter-spacing: -.2px; }
  .dotted .orange-btn {
    margin-top: 10px; }

/*===================================================
ADVISOR PRICING STRUCTURE TABLE
====================================================*/
#first-content.partner-pricing-struture {
  padding-bottom: 60px; }

.partner-pricing-struture {
  background: #e4ecf4;
  text-align: center;
  padding: 60px; }
  .partner-pricing-struture h2 {
    font-size: 46px;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-weight: normal;
    line-height: 50px;
    text-align: center;
    margin: 0;
    color: #025091;
    padding: 0; }
    .partner-pricing-struture h2 span {
      display: block; }
  .partner-pricing-struture p {
    font-size: 22px;
    font-family: "MuseoSans-300", arial, sans-serif;
    font-weight: normal;
    display: block;
    padding: 0;
    color: #333333; }
  .partner-pricing-struture p.intro-list {
    font-family: "MuseoSans-700", arial, sans-serif;
    font-size: 22px;
    color: #025091;
    padding: 30px 0 40px;
    margin: 0 10px; }
    .partner-pricing-struture p.intro-list ~ p {
      color: #025091; }
  .partner-pricing-struture .cta-combo {
    padding: 25px 0 0; }

/*===================================================
ADVISOR PRICING STRUCTURE TABLE
====================================================*/
/* //NOT SURE IT'S USED
.advisor-pricing {
    background: $white;
    padding: 60px 0;
    text-align: center;
    p {
        font-size: 24px;
        font-family: "MuseoSans-300", arial, sans-serif;
        font-weight: normal;
        display: block;
        padding: 0;
        color: $primary;
    }
}

.comission-box {
    //    background: $bg-light;
    //    padding:5em 0em 0em;
    padding: 0 0 2em; //    min-height: 360px;
    text-align: center;
    position: relative;
    h4 {
        font-size: 82px;
        font-family: "MuseoSans-700", arial, sans-serif;
        font-weight: normal;
        line-height: 60px;
        color: $primary;
        padding: 30px 0;
        text-shadow: 0 1px 0 $white;
    }
    p {
        padding: 0;
        font-family: "ProximaNova";
        font-weight: normal;
        font-size: 22px;
        color: $primary;
    }
    &.plus-signal-margin:after {
        content: "+";
        right: -35px;
        position: absolute;
        top: 20px;
        font-size: 100px;
        color: $secondary;
        z-index: 9;
    }
}*/
/* ================================================================
17. VALET SERVICES - OVERVIEW, SUPPORT, MIGRATION, PRE-SALES
================================================================ */
.valet-services-head {
  color: #f8aa00 !important;
  font-size: 47px !important;
  text-transform: uppercase; }

.valet-services-sub-head {
  text-align: center;
  font-family: "MuseoSans-500", arial, sans-serif;
  font-size: 25px;
  margin-bottom: 30px;
  letter-spacing: -1px;
  margin-top: 0px; }

.valet-services-cost sup {
  font-size: 50px;
  position: relative;
  top: -30px;
  right: 3px; }

.valet-services-cost h2,
.valet-services-cost h3 {
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 24px;
  letter-spacing: -1px; }

.valet-services-cost h3 {
  color: #025091; }

.valet-services-cost .circles {
  border-radius: 50%;
  width: 270px;
  height: 270px;
  background-color: #f8aa00;
  color: #ffffff;
  padding-top: 60px;
  display: inline-block; }
  .valet-services-cost .circles__price {
    font-family: "MuseoSans-700", arial, sans-serif;
    font-size: 80px;
    letter-spacing: -5px;
    line-height: 75px; }
  .valet-services-cost .circles__fees {
    font-family: "MuseoSans-300", arial, sans-serif;
    font-size: 26px;
    line-height: 24px; }

.valet-services-cost .section-title {
  padding: 0px;
  letter-spacing: -1px; }

.valet-services-cost .button-gold__ghost {
  display: block;
  font-size: 26px; }

.valet-services-overview {
  font-family: "ProximaNova";
  letter-spacing: -2px; }
  .valet-services-overview img {
    margin-bottom: 30px; }
  .valet-services-overview .button-gold {
    text-transform: uppercase; }
  .valet-services-overview .featured-container.no-section-icon {
    padding-bottom: 0px; }

.vs-overview-intro {
  min-height: 300px; }
  .vs-overview-intro h2 {
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -1px; }
  .vs-overview-intro img {
    padding-top: 60px; }

.vs-overview-vip-experience {
  background: #025091 url("https://images.apps4.com/images/valet-services/VS-Overview-team-up.jpg") top center no-repeat fixed;
  color: #ffffff !important;
  background-size: cover;
  text-align: center;
  padding: 60px 0px;
  max-height: 600px;
  font-family: "MuseoSans-300", arial, sans-serif; }
  .vs-overview-vip-experience h2 {
    text-transform: uppercase;
    color: #f8aa00; }
  .vs-overview-vip-experience h3 {
    font-family: "MuseoSans-500", arial, sans-serif;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px; }
  .vs-overview-vip-experience h4 {
    font-family: "MuseoSans-700", arial, sans-serif;
    font-size: 24px;
    text-transform: uppercase; }
  .vs-overview-vip-experience p {
    font-size: 17px; }
  .vs-overview-vip-experience img {
    margin-bottom: 30px; }
  .vs-overview-vip-experience ul {
    padding-left: 20px; }
  .vs-overview-vip-experience .card-holder {
    position: relative;
    bottom: -10px;
    z-index: 9; }
    .vs-overview-vip-experience .card-holder .c-3 .card {
      background-color: #025091;
      padding: 40px 20px;
      min-width: 100%;
      min-height: 440px; }
  .vs-overview-vip-experience .button-gold {
    margin-top: 30px; }

.vs-overview-vip-info {
  padding: 90px 0px 60px 0px; }
  .vs-overview-vip-info h3 {
    margin-bottom: 30px; }
  .vs-overview-vip-info img {
    margin-bottom: 20px; }

.free-ebook-module {
  background: #025091 url("https://images.apps4.com/images/valet-services/free-ebook.jpg") top center no-repeat;
  color: #ffffff;
  background-size: cover;
  padding: 90px 0px;
  font-family: "MuseoSans-700", arial, sans-serif;
  text-align: center; }
  .free-ebook-module h2 {
    font-size: 42px; }
    .free-ebook-module h2 span {
      display: block;
      font-size: 24px; }
  .free-ebook-module .button-gold {
    letter-spacing: 0px; }

.vs-support-intro h3,
.vs-migration-intro h3,
.vs-pre-sales-intro h3,
.vs-support-affordable h3 {
  font-family: "MuseoSans-300", arial, sans-serif;
  padding-bottom: 30px;
  line-height: 30px; }

.vs-support-service h3 {
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 24px;
  color: #35a4dd; }

.vs-support-service p {
  font-size: 18px; }

.vs-support-affordable h2 {
  text-transform: uppercase;
  letter-spacing: -1px; }

.vs-support-affordable h4,
.vs-support-affordable p {
  font-family: "MuseoSans-300", arial, sans-serif;
  text-align: center; }

.vs-support-affordable h4 {
  color: #35a4dd;
  font-size: 24px; }

.vs-support-affordable p {
  font-size: 16px; }

.vs-migration-process .intro-list {
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 20px;
  color: #6dabe4; }

body.fr .intro-list {
  font-size: 18px; }
  body.fr .intro-list span {
    font-size: 14px; }

.vs-migration-process .intro-list span {
  font-family: "MuseoSans-700", arial, sans-serif;
  font-size: 17px;
  color: #ffffff;
  display: block; }

.vs-migration-process #tabs-bar ul {
  border-bottom: 2px solid #6dabe4; }
  .vs-migration-process #tabs-bar ul li {
    padding: 0px 48px 0px 0px; }
  .vs-migration-process #tabs-bar ul.blue {
    border-bottom: 2px solid #025091; }
    .vs-migration-process #tabs-bar ul.blue li a.current:after {
      border-top: 10px solid #025091; }

.vs-pre-sales-grow {
  background: #025091 url("https://images.apps4.com/images/valet-services/VS-Overview-team-up.jpg") top center no-repeat fixed;
  color: #ffffff !important;
  background-size: cover; }
  .vs-pre-sales-grow h2 {
    font-size: 36px; }

.vs-overview-vip-info p,
.vs-migration-service p,
.vs-migration-what p {
  font-size: 18px; }

body.fr .vs-migration-service h2 {
  font-size: 40px; }

.vs-migration-what p {
  margin-top: 20px; }

@media screen and (max-width: 945px) {
  .vs-migration-process .show-building-tabs {
    display: initial; } }

@media screen and (min-width: 946px) {
  .vs-migration-process .hide--desktop {
    display: none; } }

@media (max-width: 768px) {
  .vs-overview-vip-experience {
    max-height: initial; }
  .vs-overview-vip-info {
    padding-top: 60px; } }

@media (min-width: 425px) and (max-width: 800px) {
  .vs-support-everything-o365 .c-5 {
    width: 20%; } }

@media (max-width: 424px) {
  .vs-support-everything-o365 .c-5 {
    width: 50%; } }

@media (min-width: 604px) and (max-width: 768px) {
  .vs-overview-vip-experience .card-holder .c-3 .card {
    min-height: 488px; } }

@media (min-width: 768px) and (max-width: 875px) {
  .valet-services-cost .circles {
    width: 240px;
    height: 240px; }
  .valet-services-cost .button-gold__ghost {
    font-size: 22px; } }

/*====================================================
PARTNER OVERVIEW DINAMIC SKU BLOCK
====================================================*/
.sign-up {
  background: #025091 url("https://images.apps4.com/images/apps4-mobile-phone.jpg") bottom center no-repeat;
  background-size: cover;
  padding: 120px 0; }
  .sign-up.ob-resell {
    background-image: url("https://images.apps4.com/images/online-backup/reseller-page/join-apps4-partner-network.jpg"); }

/* //Replaced by flex-table https://www.apps4.com/partners/partnership-models/
.partnership-model {
    p {
        margin: 0;
        padding: 17px 15px;
        font-family: 'MuseoSans-300';
    }
    thead {
        font-family: 'MuseoSans-500';
        font-size: 29px;
        letter-spacing: -1px;
        text-align: left;
        tr {
            &>td:first-of-type {
                min-width: 225px;
            }
            &>td:not(:first-of-type) {
                min-width: 225px;
            }
        }
    }
    tbody {
        tr {
            height: 90px;
            &>td:first-of-type {
                letter-spacing: -1px;
                &>p {
                    font-size: 22px;
                }
            }
            span {
                font-family: 'MuseoSans-700';
                display: block;
                font-size: 16px;
            }
            &:nth-child(odd) {
                background: $bg-light;
            }
            p {
                font-size: 15px;
            }
        }
    }
    td {
        text-align: left;
        border-right: 1px solid $grey;
    }
    [colspan] {
        text-align: center;
        p {
            font-family: 'MuseoSans-500';
            font-size: 21px;
            letter-spacing: -.5px;
        }
    }
}*/
/*.partners-programs{
    .inner{
        background:#e4ecf5;
        min-height:250px;
        padding:1em;
    }
}

.keep-this-hidden {
    li {
        margin-bottom: 25px;
        font-size: 18px;
        &:first-of-type {
            font-size: 21px;
        }
        &:last-of-type {
            margin-bottom: 0;
        }
    }
}*/
/*====================================================
ARROW DINAMIC WIDGET (used in infokit)
====================================================*/
.arrow-tabbed {
  text-align: left;
  list-style: none;
  max-width: 350px;
  position: relative;
  font-size: 18px; }
  .arrow-tabbed li {
    vertical-align: middle;
    border: 1px solid #eaeaea;
    border-right: 0;
    position: relative;
    -webkit-transition: all .24s ease-in;
    transition: all .24s ease-in; }
    .arrow-tabbed li:nth-child(n+2) {
      border-top: 0; }
    .arrow-tabbed li a {
      display: block;
      padding: 11.5px 0px 15.5px 9px; }
      .arrow-tabbed li a:hover, .arrow-tabbed li a.active {
        color: #ffffff; }
    .arrow-tabbed li:hover, .arrow-tabbed li.active {
      background: #025091; }
      .arrow-tabbed li:hover a, .arrow-tabbed li.active a {
        color: #ffffff; }
      .arrow-tabbed li:hover:before, .arrow-tabbed li.active:before {
        border-top: 29px solid #025091; }
      .arrow-tabbed li:hover .white-board-user .cls-1,
      .arrow-tabbed li:hover .bag-of-money-icon .cls-1,
      .arrow-tabbed li:hover .migration-db-icon .cls-1,
      .arrow-tabbed li:hover .phone-support-user .cls-1, .arrow-tabbed li.active .white-board-user .cls-1,
      .arrow-tabbed li.active .bag-of-money-icon .cls-1,
      .arrow-tabbed li.active .migration-db-icon .cls-1,
      .arrow-tabbed li.active .phone-support-user .cls-1 {
        fill: #ffffff; }
      .arrow-tabbed li:hover .white-board-user .cls-2,
      .arrow-tabbed li:hover .bag-of-money-icon .cls-2,
      .arrow-tabbed li:hover .migration-db-icon .cls-2,
      .arrow-tabbed li:hover .phone-support-user .cls-2, .arrow-tabbed li.active .white-board-user .cls-2,
      .arrow-tabbed li.active .bag-of-money-icon .cls-2,
      .arrow-tabbed li.active .migration-db-icon .cls-2,
      .arrow-tabbed li.active .phone-support-user .cls-2 {
        fill: #ffffff; }
      .arrow-tabbed li:hover .dashed-user .cls-1,
      .arrow-tabbed li:hover .dashed-user .cls-2,
      .arrow-tabbed li:hover .dashed-user .cls-3,
      .arrow-tabbed li:hover .dashed-user .cls-4, .arrow-tabbed li.active .dashed-user .cls-1,
      .arrow-tabbed li.active .dashed-user .cls-2,
      .arrow-tabbed li.active .dashed-user .cls-3,
      .arrow-tabbed li.active .dashed-user .cls-4 {
        fill: none;
        stroke: #ffffff;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.16px; }
      .arrow-tabbed li:hover .dashed-user .cls-1, .arrow-tabbed li.active .dashed-user .cls-1 {
        stroke-dasharray: 3.78 3.78; }
      .arrow-tabbed li:hover .dashed-user .cls-3, .arrow-tabbed li.active .dashed-user .cls-3 {
        stroke-dasharray: 4.12 4.12; }
      .arrow-tabbed li:hover .dashed-user .cls-4, .arrow-tabbed li.active .dashed-user .cls-4 {
        stroke-dasharray: 3.49 3.49; }
      .arrow-tabbed li:hover .dashed-user .cls-5, .arrow-tabbed li.active .dashed-user .cls-5 {
        fill: #ffffff; }
    .arrow-tabbed li:after {
      content: " ";
      border-left: 27px solid transparent;
      border-right: 27px solid transparent;
      position: absolute;
      right: -52px;
      z-index: 7;
      border-top: 30px solid #EAEAEA;
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg);
      top: 0;
      height: 52px; }
    .arrow-tabbed li:before {
      content: " ";
      border-left: 26px solid transparent;
      border-right: 26px solid transparent;
      position: absolute;
      right: -51px;
      z-index: 8;
      border-top: 29px solid #FFFFFF;
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg);
      top: 0;
      height: 52px;
      -webkit-transition: all .24s ease-in;
      transition: all .24s ease-in; }

.arrow-module .c-55 ul {
  max-width: 490px; }

body.page-template-page-template-resource-center .header-top {
  color: #ffffff; }
  @media screen and (min-width: 992px) {
    body.page-template-page-template-resource-center .header-top {
      border-bottom: 1px solid rgba(216, 216, 216, 0.4); } }
  body.page-template-page-template-resource-center .header-top .logo,
  body.page-template-page-template-resource-center .header-top .contacts,
  body.page-template-page-template-resource-center .header-top .login,
  body.page-template-page-template-resource-center .header-top .language-switch {
    padding: 10px;
    text-align: center; }
    @media screen and (min-width: 992px) {
      body.page-template-page-template-resource-center .header-top .logo,
      body.page-template-page-template-resource-center .header-top .contacts,
      body.page-template-page-template-resource-center .header-top .login,
      body.page-template-page-template-resource-center .header-top .language-switch {
        padding: 0.2em 0.5em;
        height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
  body.page-template-page-template-resource-center .header-top .logo {
    text-align: left;
    width: 80%; }
    body.page-template-page-template-resource-center .header-top .logo img {
      max-width: 40%; }
      @media screen and (min-width: 992px) {
        body.page-template-page-template-resource-center .header-top .logo img {
          max-width: 150px; } }
    @media screen and (min-width: 992px) {
      body.page-template-page-template-resource-center .header-top .logo {
        width: 55%; } }
  body.page-template-page-template-resource-center .header-top .contacts {
    display: none; }
    @media screen and (min-width: 992px) {
      body.page-template-page-template-resource-center .header-top .contacts {
        display: inherit; } }
    body.page-template-page-template-resource-center .header-top .contacts li {
      padding-right: 5px; }
      body.page-template-page-template-resource-center .header-top .contacts li:last-child {
        padding-right: 0; }
    body.page-template-page-template-resource-center .header-top .contacts ul li a {
      border-radius: 50%;
      border: 2px solid #ffffff;
      height: 27px;
      width: 27px;
      display: inline-block;
      font-size: 11px;
      line-height: 24px; }
      body.page-template-page-template-resource-center .header-top .contacts ul li a:hover {
        border-color: #35a4dd; }
      @media screen and (min-width: 1200px) {
        body.page-template-page-template-resource-center .header-top .contacts ul li a {
          height: 33px;
          width: 33px;
          font-size: 16px;
          line-height: 30px; } }
  body.page-template-page-template-resource-center .header-top .contacts,
  body.page-template-page-template-resource-center .header-top .login {
    display: none; }
    @media screen and (min-width: 992px) {
      body.page-template-page-template-resource-center .header-top .contacts,
      body.page-template-page-template-resource-center .header-top .login {
        display: inherit;
        width: 15%; } }
  @media screen and (min-width: 992px) {
    body.page-template-page-template-resource-center .header-top .contacts,
    body.page-template-page-template-resource-center .header-top .login,
    body.page-template-page-template-resource-center .header-top .language-switch {
      border-left: 1px solid rgba(216, 216, 216, 0.4);
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  body.page-template-page-template-resource-center .header-top .contacts a,
  body.page-template-page-template-resource-center .header-top .login a {
    color: #ffffff; }
    body.page-template-page-template-resource-center .header-top .contacts a:hover,
    body.page-template-page-template-resource-center .header-top .login a:hover {
      color: #35a4dd; }
  body.page-template-page-template-resource-center .header-top .login {
    display: none; }
    @media screen and (min-width: 992px) {
      body.page-template-page-template-resource-center .header-top .login {
        display: inherit; } }
    body.page-template-page-template-resource-center .header-top .login a {
      font-family: 'ProximaNova-Bold';
      text-transform: uppercase;
      font-size: 15px; }
  body.page-template-page-template-resource-center .header-top .language-switch {
    width: 20%; }
    @media screen and (min-width: 992px) {
      body.page-template-page-template-resource-center .header-top .language-switch {
        border-right: 1px solid rgba(216, 216, 216, 0.4);
        width: 15%; } }
    body.page-template-page-template-resource-center .header-top .language-switch img {
      padding: 0 !important; }
    body.page-template-page-template-resource-center .header-top .language-switch a {
      color: #ffffff;
      font-family: 'ProximaNova-Bold';
      font-size: 15px; }

body.page-template-page-template-resource-center .resource-center-header {
  background-size: cover;
  position: relative; }
  body.page-template-page-template-resource-center .resource-center-header .header-title {
    padding: 5% 0; }
    body.page-template-page-template-resource-center .resource-center-header .header-title h1 {
      display: block;
      text-align: center;
      width: 100%; }
      @media screen and (min-width: 992px) {
        body.page-template-page-template-resource-center .resource-center-header .header-title h1 {
          text-align: left; } }
      body.page-template-page-template-resource-center .resource-center-header .header-title h1 span.text-h1 {
        position: relative;
        padding-left: 45px;
        text-align: left; }
        body.page-template-page-template-resource-center .resource-center-header .header-title h1 span.text-h1:before {
          position: absolute;
          left: 0;
          content: '';
          top: 17%;
          width: 30px;
          height: 30px;
          background-size: cover;
          background-image: url("https://images.apps4.com/toolbox/filter_icon.svg"); }
      @media screen and (min-width: 992px) {
        body.page-template-page-template-resource-center .resource-center-header .header-title h1 {
          margin: 0;
          display: inline-block;
          max-width: 100%; } }
  body.page-template-page-template-resource-center .resource-center-header .toolbox-search {
    background: #ffffff;
    border-radius: 19px;
    padding: 5px 5px 10px 5px; }
    body.page-template-page-template-resource-center .resource-center-header .toolbox-search input[type=text] {
      width: 90%;
      font-size: 16px;
      border: 0;
      padding-left: 10px;
      outline: 0; }
      body.page-template-page-template-resource-center .resource-center-header .toolbox-search input[type=text]::-webkit-input-placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #777777;
        opacity: 1;
        /* Firefox */ }
      body.page-template-page-template-resource-center .resource-center-header .toolbox-search input[type=text]:-ms-input-placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #777777;
        opacity: 1;
        /* Firefox */ }
      body.page-template-page-template-resource-center .resource-center-header .toolbox-search input[type=text]::-ms-input-placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #777777;
        opacity: 1;
        /* Firefox */ }
      body.page-template-page-template-resource-center .resource-center-header .toolbox-search input[type=text]::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #777777;
        opacity: 1;
        /* Firefox */ }
      body.page-template-page-template-resource-center .resource-center-header .toolbox-search input[type=text]:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #777777; }
      body.page-template-page-template-resource-center .resource-center-header .toolbox-search input[type=text]::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #777777; }
    body.page-template-page-template-resource-center .resource-center-header .toolbox-search input[type=submit] {
      width: 5%;
      background: none;
      border: 0;
      text-indent: -9999px;
      -webkit-appearance: none;
      background-image: url("https://images.apps4.com/toolbox/loupe_icon.svg");
      background-position: center;
      background-repeat: no-repeat; }

body.page-template-page-template-resource-center .filters-white-box {
  -webkit-box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 1200px;
  margin: -7% auto 3em auto;
  width: 100%;
  background-color: #ffffff; }
  body.page-template-page-template-resource-center .filters-white-box:before {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    content: '';
    position: absolute;
    top: -10px;
    left: 19px; }
  body.page-template-page-template-resource-center .filters-white-box span.show-more-less {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    -webkit-transform: translateX(-50%) translateY(50%);
            transform: translateX(-50%) translateY(50%);
    background: #ffffff;
    border: 1px solid #025091;
    border-radius: 26px;
    font-size: 14px;
    color: #025091;
    padding: .4rem 1.5rem .4rem 1.5rem;
    margin: .3rem .3rem .3rem 0rem;
    line-height: 1rem; }
    body.page-template-page-template-resource-center .filters-white-box span.show-more-less.with-query-share {
      left: 37%; }
      @media screen and (min-width: 768px) {
        body.page-template-page-template-resource-center .filters-white-box span.show-more-less.with-query-share {
          left: 50%; } }
    @media screen and (min-width: 992px) {
      body.page-template-page-template-resource-center .filters-white-box span.show-more-less {
        padding-left: 2rem;
        padding-right: 2rem; } }
    body.page-template-page-template-resource-center .filters-white-box span.show-more-less:hover {
      cursor: pointer; }
    body.page-template-page-template-resource-center .filters-white-box span.show-more-less:after {
      content: '+';
      border: 1px solid #025091;
      color: #025091;
      font-size: 11px;
      margin-left: 5px;
      text-align: center;
      height: 12px;
      display: block;
      width: 12px;
      text-align: center;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    body.page-template-page-template-resource-center .filters-white-box span.show-more-less.toggled:after {
      content: '-'; }
    body.page-template-page-template-resource-center .filters-white-box span.show-more-less:hover {
      color: #ffffff;
      background-color: #025091; }
      body.page-template-page-template-resource-center .filters-white-box span.show-more-less:hover:after {
        border-color: #ffffff;
        color: #ffffff; }
  body.page-template-page-template-resource-center .filters-white-box .share-query-btn {
    position: absolute;
    right: 5px;
    bottom: 10px;
    font-size: 70%;
    color: #3dabe8;
    display: none; }

body.page-template-page-template-resource-center .resource-center-categories form div.filter {
  padding: 0.5em;
  margin-bottom: 0.5em;
  display: none; }
  body.page-template-page-template-resource-center .resource-center-categories form div.filter.product-filter-block {
    display: block; }
  body.page-template-page-template-resource-center .resource-center-categories form div.filter .filter-name {
    display: block;
    color: #025091;
    text-align: left;
    margin-bottom: 1em;
    font-size: 1.5rem;
    font-family: 'ProximaNova-Bold'; }
    body.page-template-page-template-resource-center .resource-center-categories form div.filter .filter-name span.subtitle {
      color: #777777;
      font-size: 1rem;
      display: block;
      font-family: 'ProximaNova'; }

@media screen and (min-width: 768px) {
  body.page-template-page-template-resource-center .resource-center-categories form div.multiple-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

@media screen and (min-width: 768px) {
  body.page-template-page-template-resource-center .resource-center-categories form div.multiple-filters .filter {
    -ms-flex-preferred-size: calc(50% - 1em);
        flex-basis: calc(50% - 1em); } }

@media screen and (min-width: 1200px) {
  body.page-template-page-template-resource-center .resource-center-categories form div.multiple-filters .filter:not(.half-half) {
    -ms-flex-preferred-size: calc(25% - 1em);
        flex-basis: calc(25% - 1em); } }

body.page-template-page-template-resource-center .resource-center-categories.toggled div.filter {
  display: block; }

body.page-template-page-template-resource-center .selectall-filter {
  font-family: 'ProximaNova-Bold'; }

body.page-template-page-template-resource-center .unselectAllLink {
  display: inline-block;
  font-size: 1rem;
  padding: .4rem 2rem .4rem 1rem;
  margin: .3rem .3rem .3rem 0rem;
  position: relative;
  border-radius: 15px;
  background: #025091;
  color: #ffffff;
  border: 1px solid #025091;
  line-height: 1rem;
  font-family: 'ProximaNova-Semibold'; }
  body.page-template-page-template-resource-center .unselectAllLink:hover {
    padding-right: 2em; }
  body.page-template-page-template-resource-center .unselectAllLink:after {
    content: '';
    background-image: url("https://images.apps4.com/toolbox/trash_icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    top: 23%;
    right: 8%;
    position: absolute;
    width: 15px;
    height: 15px; }

body.page-template-page-template-resource-center label.filter-label {
  display: inline-block;
  font-size: 1rem;
  padding: .4rem 2rem .4rem 2rem;
  margin: .3rem .3rem .3rem 0rem;
  position: relative;
  background: transparent;
  border: 1px solid #d4d4d4;
  border-radius: 15px;
  color: #777777;
  line-height: 1rem;
  font-family: 'ProximaNova-Semibold'; }
  body.page-template-page-template-resource-center label.filter-label span.text {
    font-family: 'ProximaNova-Semibold'; }
  body.page-template-page-template-resource-center label.filter-label:after {
    content: 'x';
    color: #ffffff;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 5px;
    top: 43%;
    opacity: 0;
    font-family: "ProximaNova";
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  body.page-template-page-template-resource-center label.filter-label.checked, body.page-template-page-template-resource-center label.filter-label.selected {
    background: #025091;
    color: #ffffff;
    border-color: #025091;
    padding-right: 2em; }
    body.page-template-page-template-resource-center label.filter-label.checked:after, body.page-template-page-template-resource-center label.filter-label.selected:after {
      opacity: 1; }
  body.page-template-page-template-resource-center label.filter-label:hover {
    cursor: pointer;
    background: #025091;
    color: #ffffff;
    text-decoration: none;
    border-color: #025091; }
  body.page-template-page-template-resource-center label.filter-label input[type="checkbox"] {
    margin-right: 10px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    display: none; }

body.page-template-page-template-resource-center .filter-wrapper {
  display: inline-block;
  font-size: 80%;
  padding: 0.2em 0;
  position: relative;
  background: #d4d4d4;
  color: #999999;
  border: 1px solid #d4d4d4;
  font-family: 'ProximaNova-Semibold';
  border-radius: 49px;
  color: #777777;
  min-width: 87px; }
  body.page-template-page-template-resource-center .filter-wrapper:before {
    content: '';
    -webkit-transition: right 500ms ease;
    transition: right 500ms ease;
    background: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    position: absolute;
    right: calc(100% - 26px);
    top: 3px;
    z-index: 0; }
  body.page-template-page-template-resource-center .filter-wrapper.checked {
    background: #025091;
    color: #ffffff;
    border-color: #025091;
    padding-right: 1.5em; }
    body.page-template-page-template-resource-center .filter-wrapper.checked:before {
      right: 2px; }
  body.page-template-page-template-resource-center .filter-wrapper input[type="checkbox"] {
    margin-right: 10px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    width: 140%;
    height: 25px;
    display: block;
    opacity: 0;
    outline: none;
    z-index: 1; }
    body.page-template-page-template-resource-center .filter-wrapper input[type="checkbox"]:hover {
      cursor: pointer; }

body.page-template-page-template-resource-center .resource-center-search-results .search-box {
  margin: 1em 0 0 0;
  position: relative; }
  body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories {
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #ffffff;
    clear: both; }
    body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-type,
    body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-name {
      padding: 0.5em;
      display: inline-block;
      position: relative;
      height: 30px;
      font-size: 12px;
      text-align: center;
      float: left; }
      body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-type:after,
      body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-name:after {
        content: '';
        width: 0px;
        height: 0px;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        position: absolute;
        right: 0;
        top: 0;
        -webkit-transform: translateX(100%);
                transform: translateX(100%); }
      body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-type.search-box-category-type,
      body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-name.search-box-category-type {
        background: #025091;
        z-index: 1; }
        body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-type.search-box-category-type:after,
        body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-name.search-box-category-type:after {
          border-left: 10px solid #025091; }
      body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-type.search-box-category-name,
      body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-name.search-box-category-name {
        padding-left: 2em;
        background: #e30613;
        z-index: 0; }
        body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-type.search-box-category-name:after,
        body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-categories .search-box-category-name.search-box-category-name:after {
          border-left: 10px solid #e30613; }
  body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-image {
    background-size: cover;
    background-position: center;
    padding-bottom: 42%;
    width: 100%; }
  body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-content {
    border-right: 1px solid #d4d4d4;
    border-left: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    padding: 1.3rem 2rem 2.5rem; }
    @media screen and (min-width: 992px) {
      body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-content {
        min-height: 395px; } }
    body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-content .search-box-title {
      color: #025091;
      font-family: 'ProximaNova-Bold';
      padding-bottom: 1em; }
    body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-content .search-box-description {
      font-size: 14px; }
      @media screen and (min-width: 768px) {
        body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-content .search-box-description {
          font-size: 16px; } }
    body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-content .search-box-cta a.toolbox-file-link {
      margin: 7px;
      padding: 7px 15px;
      border-radius: 3px;
      font-family: "ProximaNova-bold";
      font-size: 14px; }
      body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-content .search-box-cta a.toolbox-file-link:first-child {
        margin-left: 0; }
    body.page-template-page-template-resource-center .resource-center-search-results .search-box .search-box-content .small {
      font-size: 60%; }

body.page-template-page-template-resource-center .resource-center-search-results .resource-center-flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

body.page-template-page-template-resource-center .resource-center-pagination ul li {
  list-style: none;
  display: inline-block; }
  body.page-template-page-template-resource-center .resource-center-pagination ul li a {
    font-family: 'ProximaNova-Bold'; }

body.page-template-page-template-resource-center .toolbox-share-button {
  position: relative; }
  body.page-template-page-template-resource-center .toolbox-share-button .toolbox-share-button-btn {
    font-size: 20px;
    padding-right: 20px; }
    body.page-template-page-template-resource-center .toolbox-share-button .toolbox-share-button-btn:hover {
      cursor: pointer; }
    body.page-template-page-template-resource-center .toolbox-share-button .toolbox-share-button-btn ul {
      display: none;
      position: absolute;
      right: 40px;
      top: 0;
      z-index: 1;
      -webkit-box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
              box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
      background: #ffffff; }
      @media screen and (min-width: 1400px) {
        body.page-template-page-template-resource-center .toolbox-share-button .toolbox-share-button-btn ul {
          right: inherit;
          left: 98%; } }
      body.page-template-page-template-resource-center .toolbox-share-button .toolbox-share-button-btn ul li {
        list-style: none;
        min-width: 109px; }
        body.page-template-page-template-resource-center .toolbox-share-button .toolbox-share-button-btn ul li a {
          color: #777777;
          border-bottom: 1px solid #d4d4d4;
          padding: 0.5em 1.2em;
          font-size: 14px; }
        body.page-template-page-template-resource-center .toolbox-share-button .toolbox-share-button-btn ul li:last-child a {
          border-bottom: 0; }
      body.page-template-page-template-resource-center .toolbox-share-button .toolbox-share-button-btn ul.toggled {
        display: block; }
        body.page-template-page-template-resource-center .toolbox-share-button .toolbox-share-button-btn ul.toggled li a {
          display: block; }

body.page-template-page-template-resource-center .mfp-content {
  max-width: 600px;
  width: 100%; }

body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box {
  background: #ffffff;
  padding: 60px;
  position: relative; }
  body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box h3 {
    font-size: 16px; }
  body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box h4 {
    font-size: 14px; }
  body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box .subtitle {
    color: #777777;
    font-size: 14px;
    display: block; }
  body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="text"], body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="email"] {
    width: 100%;
    color: #333333;
    padding: 0.5em;
    margin-bottom: 0.5em;
    font-size: 14px; }
    body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="text"]::-webkit-input-placeholder, body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="email"]::-webkit-input-placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #777777;
      opacity: 1;
      /* Firefox */ }
    body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="text"]:-ms-input-placeholder, body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="email"]:-ms-input-placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #777777;
      opacity: 1;
      /* Firefox */ }
    body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="text"]::-ms-input-placeholder, body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="email"]::-ms-input-placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #777777;
      opacity: 1;
      /* Firefox */ }
    body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="text"]::placeholder, body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="email"]::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #777777;
      opacity: 1;
      /* Firefox */ }
    body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="text"]:-ms-input-placeholder, body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="email"]:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #777777; }
    body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="text"]::-ms-input-placeholder, body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box input[type="email"]::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #777777; }
  body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box .link-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box .link-row input {
      width: 75%; }
    body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box .link-row .copy-link-button {
      width: 25%;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      color: #025091;
      background: #ffffff;
      border: 1px solid #025091;
      padding: 0.3rem 0.2rem;
      text-align: center;
      margin-top: -0.4rem;
      font-size: 16px; }
      body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box .link-row .copy-link-button:hover {
        color: #ffffff;
        background: #025091;
        cursor: pointer; }
  body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box a.toolbox-share-email-button {
    font-size: 14px;
    padding: 6px 13px; }
  body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box .sharing-content label {
    font-size: 14px;
    color: #333333; }
    body.page-template-page-template-resource-center .white-popup-block .toolbox-share-box .sharing-content label input[type="checkbox"] {
      margin-right: 0.5em; }

/*
//1. BrightWork
//https://www.apps4.com/sharepoint/brightwork/
#mktoForm_1863 .mktoFieldDescriptor.mktoFormCol #commentCapture {
    border: 1px solid #bbbbbb !important;
    box-shadow: #bbb 0px 6px !important;
    border-radius: 3px !important;
}

#mktoForm_1863 label[for="commentCapture"] {
    color: #4d4d4d !important;
    text-transform: none;
    font-size: 18px;
    font-family: 'MuseoSans-300';
    letter-spacing: -.5px;
}*/
/*====================================================
11. SHAREPOINT PRIVATE - sharepoint/private/
====================================================*/
.holder-blocks .holder-1.sharepoint-reliability, .holder-blocks .holder-1.sharepoint-value, .holder-blocks .holder-1.sharepoint-support, .holder-blocks .holder-1.sharepoint-agility {
  background-size: cover; }

.holder-blocks .holder-1.sharepoint-reliability {
  background: #025091 url("https://images.apps4.com/images/sharepoint/private/Reliability.jpg") center center no-repeat; }

.holder-blocks .holder-1.sharepoint-value {
  background: #025091 url("https://images.apps4.com/images/sharepoint/private/value.jpg") center center no-repeat; }

.holder-blocks .holder-1.sharepoint-support {
  background: #025091 url("https://images.apps4.com/images/sharepoint/private/support.jpg") center center no-repeat; }

.holder-blocks .holder-1.sharepoint-agility {
  background: #025091 url("https://images.apps4.com/images/sharepoint/private/agility.jpg") center center no-repeat; }

/*===================================================
PARTNER PRODUCT SHAREPOINT MODULE : Not used anymore?
====================================================*/
/* #first-content.partner-resell,
#first-content.partner-free-of-charge {
    padding-bottom: 60px;
}

.partner-resell {
    background: $white;
    text-align: center;
    p {
        font-size: 22px;
        font-family: "MuseoSans-300", arial, sans-serif;
        font-weight: normal;
        display: block;
        color: $primary;
        margin: 0 10px;
    }
    p.intro-list {
        font-family: "MuseoSans-700", arial, sans-serif;
        font-size: 23px;
        color: $primary;
        padding: 60px 0;
    }
    .cta-combo {
        padding: 0;
    }
    span.focus {
        font-family: "MuseoSans-500";
    }
}

.apps4-resell-number {
    padding: 60px 0 110px;
    text-align: center;
    background: $primary;
    p {
        font-size: 36px;
        font-family: "MuseoSans-700", arial, sans-serif;
        color: $white;
        span {
            font-size: 24px;
            font-family: "MuseoSans-300", arial, sans-serif;
            font-weight: normal;
            display: block;
        }
    }
}

.resell-large {
    background: $white url("../img/resell-featured-sass-paas.jpg") no-repeat center center fixed;
    padding: 60px 0 80px;
    text-align: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    h3 {
        font-size: 60px;
        font-family: "MuseoSans-700", arial, sans-serif;
        font-weight: normal;
        line-height: 65px;
        margin: 0;
        color: $white;
        padding: 0 0 30px;
    }
    h4 {
        font-size: 18px;
        font-family: "MuseoSans-700", arial, sans-serif;
        font-weight: normal;
        color: $white;
        padding: 0 0 60px;
    }
    p {
        color: $white;
    }
    .partner-list {
        padding: 30px 0;
        li {
            font-family: "ProximaNova";
            color: $white;
            font-size: 16px;
            list-style: none;
            background: transparent url("../img/white_check.png") left no-repeat;
            padding: 15px 50px 0;
            min-height: 50px;
            line-height: 20px;
        }
    }
    .blue-ghost-btn {
        color: $white;
    }
}

.arrow {
    height: 15px;
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    float: left;
    z-index: 9;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    &:before {
        content: '';
        position: absolute;
        width: 100%;
        background: $bg-light;
        height: 10px;
        left: 0;
        top: 15px;
    }
    .left {
        left: -15px;
        &:before {
            right: -20px;
        }
    }
    .right {
        right: -15px;
        &:before {
            left: -20px;
        }
    }
    i {
        height: 15px;
        background: $bg-light;
        position: absolute;
        bottom: 0;
        width: 50%;
        &:before {
            position: absolute;
            display: inline-block;
            content: '';
            z-index: 5;
            border-left: 20px solid transparent;
            border-bottom: 20px solid $bg-light;
            border-right: 20px solid transparent;
        }
    }
} */
/*====================================================
12. LIGHT BLUE TABS -SharePoint Price
====================================================*/
#tabs-light-blue {
  text-align: left; }
  #tabs-light-blue #tab-1 h3 {
    margin: 0px 0px 29px;
    padding-bottom: 10px;
    border-bottom: 1px solid;
    letter-spacing: -1px; }
  #tabs-light-blue #tab-2 h3 {
    margin: 0px;
    padding-bottom: 30px;
    letter-spacing: -1px; }
  #tabs-light-blue .container-tabs-pricing ul {
    list-style-position: inside;
    font-family: "ProximaNova";
    margin-left: 5px;
    list-style-type: none; }
  #tabs-light-blue .container-tabs-pricing li.current {
    border: none; }
  #tabs-light-blue .data-plan li {
    padding-bottom: 25px; }
  #tabs-light-blue .c-4:first-of-type {
    padding-left: 0px; }
  #tabs-light-blue .c-60 {
    padding-left: 0px !important; }
  #tabs-light-blue [id*="data-pricing-"] {
    padding-left: 10px;
    display: none; }
  #tabs-light-blue .line {
    padding-bottom: 14px;
    border-bottom: 1px solid #025091; }
  #tabs-light-blue .row {
    border-bottom: 1px solid #025091;
    padding-bottom: 20px;
    margin: 0px 0px 20px 0px; }
  #tabs-light-blue .price {
    font-size: 50px;
    letter-spacing: -3px;
    font-family: "MuseoSans-100"; }
    #tabs-light-blue .price span {
      font-size: 20px;
      letter-spacing: initial;
      font-family: "MuseoSans-300"; }
    #tabs-light-blue .price .blue-btn {
      letter-spacing: normal; }
  #tabs-light-blue .small-btn {
    font-size: 16px;
    padding: 10px 32px;
    margin-right: 5px; }
  #tabs-light-blue [class*="radio-"] {
    float: left;
    padding: 0.5em; }
  #tabs-light-blue input[type="radio"] {
    margin-right: 10px;
    width: initial;
    vertical-align: middle; }
  #tabs-light-blue .radio-btn {
    margin-top: 15px;
    width: 20%; }
  #tabs-light-blue .radio-btn--copy {
    width: 80%; }
  #tabs-light-blue .custom-rounded {
    opacity: 0;
    position: absolute; }
  #tabs-light-blue .custom-rounded,
  #tabs-light-blue .custom-rounded-label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer; }
  #tabs-light-blue .custom-rounded-label {
    position: relative; }
  #tabs-light-blue .custom-rounded + .custom-rounded-label:before {
    content: '';
    background: #ffffff;
    border: transparent;
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    padding: 2px;
    margin-right: 20px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 0px 5px #ffffff;
            box-shadow: 0px 0px 0px 5px #ffffff; }
  #tabs-light-blue .custom-rounded + .custom-rounded-label:before {
    border-radius: 50%; }
  #tabs-light-blue .custom-rounded:checked + .custom-rounded-label:before {
    background: #025091;
    -webkit-box-shadow: 0px 0px 0px 5px #ffffff;
            box-shadow: 0px 0px 0px 5px #ffffff; }
  body.fr #tab-2 h3 {
    letter-spacing: -1px;
    font-size: 23px; }

@media (max-width: 50em) {
  #tabs-light-blue .blue-btn {
    padding: 10px 110px;
    margin-right: 10px; }
  #tabs-light-blue div.c-50:nth-of-type(3),
  #tabs-light-blue div.c-50:first-of-type {
    width: 100%; }
  #tabs-light-blue [id*="data-pricing-"] {
    padding-left: initial;
    padding-bottom: 20px; }
  #tabs-light-blue #tab-2 .c-40,
  #tabs-light-blue #tab-2 .c-60 {
    width: 100%; } }

@media (max-width: 37.75em) {
  #tabs-light-blue .blue-btn {
    display: block;
    text-align: center;
    margin-bottom: 10px; } }

.compare-product .regular-text, .compare-product #newsroom p, #newsroom .compare-product p {
  max-width: 335px;
  margin: 0 auto; }

.compare-features table {
  width: 100%; }

.compare-features td:first-child {
  width: 45%; }

.compare-features td:not(:first-child) {
  text-align: center; }

.compare-features .body-title {
  -webkit-transition: all .34s ease-out;
  transition: all .34s ease-out; }
  .compare-features .body-title:hover {
    cursor: pointer;
    background: #ffffff; }

.compare-features .table-body.active .body-title {
  background: transparent; }

.compare-features .table-body h3 {
  font-family: 'ProximaNova-Bold';
  color: #025091;
  font-size: 22px;
  border-bottom: 1px solid #025091;
  padding: 10px 0;
  margin: 0; }

.compare-features .body-content tr td {
  border-bottom: 1px solid #025091;
  padding: 10px;
  font-family: 'ProximaNova';
  color: #025091; }

.toogle-signal {
  height: 30px;
  width: 30px;
  background: #7FCB15;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  vertical-align: middle;
  margin-right: 10px;
  -webkit-transition: all .34s ease-out;
  transition: all .34s ease-out; }
  .toogle-signal:before, .toogle-signal:after {
    position: absolute;
    width: 50%;
    height: 2px;
    border-radius: 20px;
    background: #ffffff;
    top: 50%;
    content: '';
    left: 50%;
    margin-top: -1.5px;
    margin-left: -25%;
    -webkit-transition-duration: .2s, .2s;
            transition-duration: .2s, .2s;
    -webkit-transition-delay: .2s, 0s;
            transition-delay: .2s, 0s; }
  .toogle-signal:after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }

.compare-features .table-body.active .toogle-signal:after,
.compare-features .table-body.active .toogle-signal:before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition-duration: .2s, .2s;
          transition-duration: .2s, .2s;
  -webkit-transition-delay: .2s, 0s;
          transition-delay: .2s, 0s; }

.compare-features .body-content thead td {
  color: #025091;
  font-family: 'ProximaNova-Bold'; }

.compare-features .body-content thead td:not(:first-child):nth-child(even),
.compare-features .body-content td:not(:first-child):nth-child(even) {
  background: #e4ecf4;
  width: calc(55% / 1/3); }

@media only screen and (max-width: 768px) {
  .compare-features .compare-features table {
    width: 100%; }
  .compare-features .table-body h2 {
    width: 100%; } }

.bar-long {
  height: 5px;
  background-color: #009ACF;
  width: 0px;
  z-index: 9;
  position: fixed;
  top: 50px;
  left: 0; }

/*====================================================
TOP VIDEO
====================================================*/
.case-top-video {
  color: #ffffff;
  font-family: "MuseoSans-300", arial, sans-serif;
  padding-bottom: 120px !important;
  padding-top: 120px !important; }
  .case-top-video .c-25 {
    border-right: 1px solid #ffffff; }
  .case-top-video blockquote {
    text-align: left;
    color: #ffffff;
    font-size: 24px;
    font-style: italic;
    margin-top: -.3em;
    line-height: 28px;
    border: 0;
    padding: 0; }
  .case-top-video .cite {
    font-size: 16px;
    white-space: nowrap; }
  .case-top-video .fa {
    vertical-align: middle;
    left: -7px;
    position: relative;
    -webkit-transition: left .2s ease;
    transition: left .2s ease; }
  .case-top-video .button-blue, .case-top-video .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton, .mktoForm .mktoButtonRow .mktoButtonWrap .case-top-video button.mktoButton {
    margin: 20px 0; }
    @media (min-width: 768px) {
      .case-top-video .button-blue, .case-top-video .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton, .mktoForm .mktoButtonRow .mktoButtonWrap .case-top-video button.mktoButton {
        margin: 0 20px 0 0; } }

.top-list {
  color: #ffffff;
  font-size: 29px;
  font-family: 'ProximaNova';
  margin-top: 130px; }
  .top-list li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
    letter-spacing: -.5px; }
    .top-list li:last-of-type {
      margin-right: 0;
      border: 2px solid #e30613;
      padding: 7px 25px; }
    .top-list li:first-of-type {
      position: relative;
      left: 10px;
      top: 5px; }

.video-bg {
  width: 100%; }

.bevel-btn {
  -webkit-transition: all 0.34s ease 0s;
  transition: all 0.34s ease 0s;
  border: none;
  font-size: 18px;
  border-radius: 3px;
  display: inline-block;
  padding: 15px 30px;
  color: #ffffff; }
  .bevel-btn:active {
    position: relative;
    top: .5px; }
  .bevel-btn.bevel-green {
    background: #7FCB15;
    -webkit-box-shadow: 0px 5px 0px #4e8f0d;
            box-shadow: 0px 5px 0px #4e8f0d; }
    .bevel-btn.bevel-green:hover {
      background: #4e8f0d;
      -webkit-box-shadow: 0px 5px 0px #7FCB15;
              box-shadow: 0px 5px 0px #7FCB15; }
  .bevel-btn.bevel-blue {
    background: #35a4dd;
    -webkit-box-shadow: 0px 5px 0px #267fab;
            box-shadow: 0px 5px 0px #267fab; }
    .bevel-btn.bevel-blue:hover {
      background: #267fab;
      -webkit-box-shadow: 0px 5px 0px #35a4dd;
              box-shadow: 0px 5px 0px #35a4dd; }
    .bevel-btn.bevel-blue:active {
      -webkit-box-shadow: 0px 2.5px 0px #35a4dd;
              box-shadow: 0px 2.5px 0px #35a4dd; }

.bevel-btn.bevel-blue:hover > .fa {
  left: -4px; }

@media only screen and (max-width: 767px) {
  .case-top-video .c-25,
  .case-top-video .c-75 {
    text-align: center;
    border: 0; } }

/*====================================================
PARTNER INFOKIT
====================================================*/
.partner-infokit-marketo .md-bg {
  padding: 40px 0; }

.partner-infokit-marketo .partner-infokit {
  max-width: 440px;
  margin: 15px auto 0; }

.partner-infokit-marketo .light-museosans {
  font-size: 21px;
  margin: 0; }

.partner-infokit-marketo img {
  float: left; }

.partner-infokit-marketo h4,
.partner-infokit-marketo h5 {
  color: #025091;
  font-family: "ProximaNova-Regular", "ProximaNova";
  font-size: 38px;
  font-weight: normal;
  letter-spacing: -1px;
  line-height: 38px;
  margin: 0 0 0 70px;
  position: relative;
  text-align: left; }
  .partner-infokit-marketo h4 span,
  .partner-infokit-marketo h5 span {
    display: block; }
  .partner-infokit-marketo h4:before,
  .partner-infokit-marketo h5:before {
    background: url("https://images.apps4.com/images/svg-website/pdf-icon.svg") no-repeat left;
    content: "";
    height: 79px;
    left: -75px;
    position: absolute;
    top: -3px;
    width: 60px; }
  .partner-infokit-marketo h4:after,
  .partner-infokit-marketo h5:after {
    background: #025091;
    content: "";
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0;
    width: 1px; }

.partner-infokit-marketo .marketo-form .mktoForm {
  width: 100% !important; }
  .partner-infokit-marketo .marketo-form .mktoForm,
  .partner-infokit-marketo .marketo-form .mktoForm * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px;
    font-family: 'MuseoSans-300'; }
  .partner-infokit-marketo .marketo-form .mktoForm:after {
    clear: both;
    content: "";
    display: table; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoClear,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoGutter,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoOffset,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow.hidden {
    display: none; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoRequiredField .mktoAsterix,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoAsterix {
    color: #ffffff;
    padding-right: 0px; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormCol,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFieldWrap {
    width: 100%; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormCol {
    margin: 0px !important; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow {
    float: left;
    clear: both;
    width: 70%;
    font-family: "proxima-nova"; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoButtonRow {
    float: left;
    width: 28%;
    font-family: "proxima-nova"; }
  .partner-infokit-marketo .marketo-form .mktoForm input[type="url"],
  .partner-infokit-marketo .marketo-form .mktoForm input[type="text"],
  .partner-infokit-marketo .marketo-form .mktoForm input[type="date"],
  .partner-infokit-marketo .marketo-form .mktoForm input[type="tel"],
  .partner-infokit-marketo .marketo-form .mktoForm input[type="email"],
  .partner-infokit-marketo .marketo-form .mktoForm input[type="number"],
  .partner-infokit-marketo .marketo-form .mktoForm textarea.mktoField,
  .partner-infokit-marketo .marketo-form .mktoForm select.mktoField {
    height: 36px;
    line-height: normal;
    font-family: 'MuseoSans-300';
    font-size: 16px;
    border: 0; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow label,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow input,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow textarea,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow select {
    clear: both;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100% !important; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow label {
    float: left;
    color: #ffffff; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow input,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow textarea,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow select {
    float: right;
    min-height: 30px; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow input,
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow textarea {
    padding: 10px;
    border: none !important;
    border: none !important;
    -webkit-box-shadow: inset 2px 2px 0px 0px #bbbbbb !important;
            box-shadow: inset 2px 2px 0px 0px #bbbbbb !important;
    font-size: 16px; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow input[type=checkbox] {
    float: left;
    clear: left;
    width: 30px !important;
    padding: 0px;
    margin: 0px;
    border: none; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow textarea {
    height: auto; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow.checkbox label {
    width: 83% !important;
    margin: 0px 0px 0px 36px;
    text-transform: none; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow.checkbox input {
    margin-top: -34px; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoButtonRow {
    text-align: center;
    margin-top: 0 !important;
    margin-left: 2% !important; }
    .partner-infokit-marketo .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap {
      margin: 0px !important; }
      .partner-infokit-marketo .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton {
        -webkit-transition: all 0.34s ease 0s;
        transition: all 0.34s ease 0s;
        background: #7FCB15;
        border: none;
        -webkit-box-shadow: 0px 2px 0px #4e8f0d;
                box-shadow: 0px 2px 0px #4e8f0d;
        color: #ffffff;
        font-size: 16px;
        display: block;
        width: 100%; }
        .partner-infokit-marketo .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton:hover {
          background-color: #4e8f0d;
          -webkit-box-shadow: 0px 2px 0px #7FCB15;
                  box-shadow: 0px 2px 0px #7FCB15; }
        .partner-infokit-marketo .marketo-form .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton:active {
          top: .1em;
          -webkit-box-shadow: #7FCB15 0 0.2em 0px;
                  box-shadow: #7FCB15 0 0.2em 0px;
          position: relative; }
  .partner-infokit-marketo .marketo-form .mktoForm ::-webkit-input-placeholder {
    color: #333333;
    font-family: "MuseoSans-300It", arial, sans-serif;
    font-size: 16px;
    position: relative;
    top: 2px; }
  .partner-infokit-marketo .marketo-form .mktoForm :-moz-placeholder {
    color: #333333;
    font-family: "MuseoSans-300It", arial, sans-serif;
    font-size: 16px;
    position: relative;
    top: 2px; }
  .partner-infokit-marketo .marketo-form .mktoForm ::-moz-placeholder {
    color: #333333;
    font-family: "MuseoSans-300It", arial, sans-serif;
    font-size: 16px;
    position: relative;
    top: 2px; }
  .partner-infokit-marketo .marketo-form .mktoForm :-ms-input-placeholder {
    color: #333333;
    font-family: "MuseoSans-300It", arial, sans-serif;
    font-size: 16px;
    position: relative;
    top: 2px; }

@media only screen and (max-width: 767px) {
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow {
    clear: none;
    width: 70%; } }

@media only screen and (min-width: 768px) {
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow {
    clear: none;
    width: 70%; } }

@media only screen and (min-width: 980px) {
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow {
    clear: both;
    width: 70%;
    margin-right: 0px; }
    .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow label {
      padding-left: 0px;
      font-size: 14px; }
    .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow.select-dropdown label, .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow.checkbox label {
      display: block;
      text-transform: none; } }

@media only screen and (min-width: 1060px) {
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow {
    clear: none;
    width: 70%; }
    .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow.select-dropdown:nth-of-type(even) {
      /* Intended as 'odd', but apparently there's a hidden one somewhere? So Weird. */
      clear: left; } }

.partner-infokit-marketo .message-marketo p {
  padding: 0px;
  line-height: normal;
  font-size: 18px;
  letter-spacing: -.2px;
  text-align: center; }

.case-studies {
  padding: 0 0 60px; }

@media (max-width: 37.75em) {
  .card:not(first-of-type) {
    margin-top: 30px; }
  .top-list li:not(:last-child) {
    display: block;
    margin: 0; }
  .top-list li:not(:first-child):not(:last-child) {
    margin-bottom: 20px; }
  .case-top-video {
    padding-bottom: 70px !important;
    padding-top: 60px !important; } }

@media only screen and (min-width: 433px) and (max-width: 1059px) {
  .top-list li:last-of-type {
    display: inline-block; } }

@media (max-width: 767px) {
  .single-view .case-footer .c-20:after {
    display: none; } }

@media (max-width: 1100px) {
  .single-view .case-footer .c-20 {
    display: none; }
  .single-view .case-footer .c-80 {
    width: 100%; }
  .single-view div.case-footer {
    padding: 20px; } }

/*====================================================
CARD STYLES
====================================================*/
.card {
  /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0);
  background-color: #ffffff;
  margin: 0 auto; }
  .card > a:hover ~ .content .ghost-light-btn {
    background: #35a4dd;
    color: #ffffff; }
  .card .header {
    height: 185px;
    position: relative;
    background-image: url("https://images.apps4.com/images/banners/ressell-office-365.jpg");
    background-size: cover;
    background-position: center center; }
    .card .header .single_category {
      background: #e30613;
      position: absolute;
      color: #ffffff;
      padding: 7px 14px;
      right: 20px;
      font-family: 'ProximaNova'; }
      .card .header .single_category.blue-tag {
        background: #025091;
        font-size: 18px; }
    .card .header .client-brand {
      position: absolute;
      bottom: 15px;
      left: 15px;
      max-width: 150px;
      max-height: 45px; }
  .card .content {
    padding: 20px;
    text-align: left; }
    .card .content .title {
      font-family: 'ProximaNova-Bold';
      font-size: 13px;
      color: #333333;
      line-height: 16px;
      margin: 0;
      height: 35px; }
    .card .content .footer {
      margin: 25px 0 15px; }
      .card .content .footer .after_arrow {
        display: inline-block;
        -webkit-transform: scale(0.5, 1);
                transform: scale(0.5, 1); }
  .card .category {
    font-family: 'ProximaNova';
    font-weight: 100;
    font-size: 13px;
    margin: 0 0 5px 0;
    line-height: normal;
    color: #333333; }
  .card .description {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
    font-family: "ProximaNova-Regular", "ProximaNova"; }

.featured [class*="shadow"] {
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: background .15s ease-in-out;
  transition: background .15s ease-in-out; }
  .featured [class*="shadow"].mb-fix {
    margin-bottom: -20px; }
    @media (min-width: 992px) {
      .featured [class*="shadow"].mb-fix {
        margin: 30px 0 0; } }
  @media (min-width: 992px) {
    .featured [class*="shadow"] {
      min-height: 230px; } }
  .featured [class*="shadow"]:hover {
    background: #025091; }
    .featured [class*="shadow"]:hover h4, .featured [class*="shadow"]:hover h5, .featured [class*="shadow"]:hover .info small, .featured [class*="shadow"]:hover small, .featured [class*="shadow"]:hover .meta {
      color: #ffffff; }
  .featured [class*="shadow"] .category {
    margin: 0px 0 15px; }
  .featured [class*="shadow"] .meta {
    margin: 20px 0;
    display: block; }
  .featured [class*="shadow"] .info {
    line-height: 17px; }
    .featured [class*="shadow"] .info small {
      color: #3a3a3a; }
  .featured [class*="shadow"] .info,
  .featured [class*="shadow"] .meta {
    font-size: .95rem; }
  .featured [class*="shadow"] .content {
    padding: 25px; }
    @media (min-width: 992px) {
      .featured [class*="shadow"] .content {
        min-height: 245px; }
        .fr .featured [class*="shadow"] .content {
          min-height: 259.5px; } }
  .featured [class*="shadow"].full-height .header {
    display: none;
    background-image: url("https://images.apps4.com/webinar_background.jpg"); }
    @media (min-width: 992px) {
      .featured [class*="shadow"].full-height .header {
        display: block;
        height: 275.5px; }
        .fr .featured [class*="shadow"].full-height .header {
          height: 289px; } }
  .featured [class*="shadow"].full-height.mb-fix {
    margin-top: 0; }

.featured .avatars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  @media (min-width: 992px) {
    .featured .avatars {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  .featured .avatars .avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .featured .avatars .avatar:first-of-type {
      margin-right: 30px; }
      @media (min-width: 992px) {
        .featured .avatars .avatar:first-of-type {
          margin-right: 0; } }
  .featured .avatars .info {
    padding-left: .5rem; }
  .featured .avatars img {
    border-radius: 49px; }

.featured .card:not(first-of-type) {
  margin-top: 30px; }

.ghost-light-btn {
  border: 1px solid #35a4dd;
  padding: 6px 16px;
  font-family: 'MuseoSans-300';
  font-size: 16px;
  letter-spacing: -.5px; }
  .ghost-light-btn:hover {
    background: #35a4dd;
    color: #ffffff; }
  .ghost-light-btn:active {
    position: relative;
    top: 1px; }

.cat-filter {
  position: relative;
  text-align: left;
  font-family: 'ProximaNova';
  margin: 45px 0; }
  .cat-filter:before {
    content: "\f0b0";
    font-family: FontAwesome;
    display: inline-block;
    vertical-align: baseline; }
  .cat-filter li {
    display: inline-block;
    margin-right: 10px; }
    .cat-filter li:last-child {
      margin-right: 0px; }
  .cat-filter a {
    font-size: 16px;
    color: #e30613;
    padding: 3px 5px; }
    .cat-filter a:hover {
      color: #ffffff;
      background: #e30613; }

.cat-filter .current-cat {
  background: #e30613; }
  .cat-filter .current-cat a {
    color: #ffffff; }

@media (max-width: 508px) {
  .cat-filter {
    margin: 20px 0;
    text-align: center; }
  .cat-filter li {
    margin-top: 20px; }
  .case-top-video blockquote {
    font-size: 18px; }
  .container-video img {
    max-width: 40%; }
  .case-top-video .cite {
    font-weight: 700;
    display: block; } }

.single-view {
  background: #eaeaea;
  padding-bottom: 80px; }
  .single-view ol {
    padding-left: 20px; }
  .single-view > .frame-table {
    padding-top: 30px; }
  .single-view h1 {
    color: #025091;
    font-family: "MuseoSans-300", arial, sans-serif;
    font-size: 32px;
    word-wrap: break-word;
    line-height: 46px;
    margin: 0;
    max-width: 640px; }
  .single-view p {
    line-height: 26px;
    font-smoothing: antialiased;
    font-family: "ProximaNova-Regular", "ProximaNova";
    color: #333333;
    font-size: 16px; }
  .single-view h2,
  .single-view h3,
  .single-view h4,
  .single-view h5,
  .single-view h6 {
    font-family: 'ProximaNova';
    line-height: 1.2em;
    color: #025091;
    margin: 40px 0 15px; }
  .single-view .case-content {
    /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0);
    padding: 30px;
    background: #ffffff; }
    .single-view .case-content .featured {
      background: #ebf4fc;
      padding: 32px;
      font-family: 'MuseoSans-300It';
      color: #025091;
      margin: 20px 0; }
    .single-view .case-content h5 {
      font-size: 18px; }
  .single-view .case-footer {
    background: #025091;
    color: #ffffff;
    padding: 40px 20px 50px; }
    .single-view .case-footer .partner-infokit {
      max-width: inherit; }
    .single-view .case-footer h5 {
      font-family: "ProximaNova-Regular", "ProximaNova";
      font-size: 40px;
      letter-spacing: -1px;
      line-height: 40px;
      font-weight: 100;
      color: #ffffff;
      margin-top: 0; }
    .single-view .case-footer .c-20 {
      position: relative; }
      .single-view .case-footer .c-20:after {
        width: 1px;
        height: 100%;
        top: 0px;
        content: '';
        position: absolute;
        right: calc(100% - 120px);
        background: #ffffff; }
  .single-view .pub {
    max-height: none;
    overflow: visible; }
    .single-view .pub img {
      width: 100%;
      /*@if $level==1 {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    @else if $level==2 {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==3 {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    @else if $level==4 {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
    @else if $level==5 {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }*/
      -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0);
              box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0); }
  .single-view .card {
    max-width: none; }
  .single-view .divisor {
    border: 0;
    height: 1px;
    background: #d4d4d4;
    -webkit-box-shadow: 0px 1px 0px 0px #ffffff;
            box-shadow: 0px 1px 0px 0px #ffffff; }

@media (max-width: 50em) {
  .single-view .c-30 {
    display: none; }
  .single-view .c-70 {
    width: 100%; }
  .data-holder {
    display: none; }
  .single-view h1 {
    margin-bottom: 30px;
    font-size: 30px; } }

@media only screen and (max-width: 470px) {
  .partner-infokit-marketo .marketo-form .mktoForm .mktoFormRow {
    width: 100% !important;
    margin-bottom: 10px; }
  .partner-infokit-marketo .marketo-form .mktoForm .mktoButtonRow {
    width: 100% !important;
    margin-left: 0 !important; } }

body.fr .single-view .case-footer h5 {
  font-size: 34px; }

.after__arrow {
  display: inline-block;
  -webkit-transform: scale(0.5, 1);
          transform: scale(0.5, 1);
  vertical-align: middle;
  font-size: 26px; }

/*===================================================
apps4 CASE STUDIES MODULE
====================================================*/
.apps4-case-studies {
  padding: 60px 0;
  background: #dae4ef;
  position: relative; }
  .apps4-case-studies .apps4-icon-module {
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -70px;
    padding: 0 0 60px; }

.free-trial-icon,
.free-pdf-icon,
.chat-icon-btn {
  -webkit-transition: all 0.34s ease 0s;
  transition: all 0.34s ease 0s;
  position: relative; }

.free-trial-icon:hover,
.free-pdf-icon:hover,
.chat-icon-btn {
  cursor: pointer; }

.free-trial-icon:before,
.free-pdf-icon:before,
.chat-icon-btn:before {
  width: 55px;
  position: absolute;
  height: 45px;
  left: 0px;
  top: 0px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  background-color: #7FCB15;
  font-size: 22px;
  line-height: 44px;
  -webkit-transition: all 0.14s ease 0s;
  transition: all 0.14s ease 0s; }

.free-trial-icon:before {
  content: "\f019"; }

.free-pdf-icon:before {
  content: "\f1c1"; }

.chat-icon-btn:before {
  content: "\f075"; }

.free-trial-icon:hover:before,
.free-pdf-icon:hover:before,
.chat-icon-btn:hover:before {
  background: #025091; }

.blue-detail-box {
  padding: 15px 20px 40px 20px;
  border-top: 5px solid #025091;
  background: #ffffff;
  position: relative; }

.double-title {
  font-family: "MuseoSans-500";
  letter-spacing: -1px;
  font-size: 20px; }

.double-title span {
  font-size: 36px; }

a.see-all {
  text-align: center;
  font-family: "ProximaNova-Regular", "ProximaNova"; }
  a.see-all:hover {
    color: #025091;
    text-decoration: underline; }

/***NEVER MISS A CALL***/
.never-miss-a-call {
  padding-bottom: 40px; }
  @media screen and (min-width: 480px) {
    .never-miss-a-call {
      padding-bottom: 70px; } }
  @media screen and (min-width: 768px) {
    .never-miss-a-call {
      padding-bottom: 140px; } }

.big-phone {
  position: relative; }
  .big-phone .phone-img {
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translate(-57%, -50%);
            transform: translate(-57%, -50%); }
    .big-phone .phone-img img {
      max-width: 100%; }
  .big-phone .phone-description {
    padding: 60px 15px 0 15px; }
    @media screen and (min-width: 480px) {
      .big-phone .phone-description {
        padding: 80px 15px 0 15px; } }

.phone-features {
  padding-top: 0;
  padding-bottom: 0; }
  .phone-features .tabs-container .tabs {
    z-index: 0;
    margin: 0 auto;
    max-width: 1200px;
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .phone-features .tabs-container .tabs .tab-link {
      min-width: inherit;
      border-top: 0;
      border-bottom: 1px solid #d4d4d4;
      position: relative;
      display: block;
      padding: 10px;
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 33%;
      background: #d4d4d4; }
      .phone-features .tabs-container .tabs .tab-link .label-tabs {
        width: 100%;
        text-align: center; }
      .phone-features .tabs-container .tabs .tab-link.current {
        border-right: 0;
        border-left: 0;
        background: #ffffff; }
        .phone-features .tabs-container .tabs .tab-link.current .label-tabs {
          font-weight: bold; }
      @media screen and (min-width: 992px) {
        .phone-features .tabs-container .tabs .tab-link {
          padding: 20px 40px;
          display: inline-block;
          border-right: 1px solid #d4d4d4; }
          .phone-features .tabs-container .tabs .tab-link.current {
            border-bottom: 1px solid #ffffff;
            border-right: 1px solid #d4d4d4; } }
      .phone-features .tabs-container .tabs .tab-link:last-child {
        border-right: 0; }
  .phone-features .tab-content {
    padding-top: 60px;
    background: #ffffff; }
    .phone-features .tab-content.with-slider {
      display: block;
      visibility: hidden;
      height: 0; }
      .phone-features .tab-content.with-slider.current {
        visibility: visible;
        height: auto; }
    .phone-features .tab-content.current {
      background: #ffffff; }

/*
//GRAPH REVENUE CALCULATOR USING CHARTJS
#graph-calculation {
    font-family: 'ProximaNova';
    .graph-calculation-form {
        padding: 1em;
        border-bottom: 2px solid $primary;
        border-top: 2px solid $primary;

        .form-row {
            display: flex;
            flex-direction:column;
            @media screen and (min-width:768px){
                flex-direction:row;
            }
            //margin: 1em 0 0 0;
            .form-cell {
                 @media screen and (min-width:768px){
                    flex-basis: 33.333333%;
                 }
                
                text-align: center;
                label {
                    font-weight: 500;
                    input {
                        display: block;
                        margin: 0.5em auto 0 auto;
                        padding: 0.5em;
                    }
                }
            }
        }
    }

    div.calculationOutput {
        background: $white;
        padding: 1em;
        margin: 0.5em 0;
        p {
            padding: 0.5em 0;
            strong {
                font-weight: 500;
            }
        }
    }
}*/
@media screen and (min-width: 768px) {
  .phone-features .parent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .phone-features .parent .first {
      margin-right: 35px; }
      .phone-features .parent .first li {
        font-size: 24px !important; }
      .phone-features .parent .first .fr-list {
        margin-bottom: -36px; }
      .phone-features .parent .first .secondS {
        padding-top: 0px; } }

.phone-features .parent .package {
  padding: 30px; }

.phone-features .parent img {
  height: 100px; }

.phone-features .parent h2 {
  font-size: 45px;
  color: #025091; }

.phone-features .parent .package-element:before {
  background-size: 24px 33px;
  height: 77px;
  background-repeat: no-repeat;
  width: 21px;
  margin-left: -23px;
  margin-top: 5px;
  content: " ";
  position: absolute; }

.phone-features .parent .package-element.one:before {
  background-image: url("https://images.apps4.com/images/VoipSimpleSteps/CirclesOne.svg"); }

.phone-features .parent .package-element.two:before {
  background-image: url("https://images.apps4.com/images/VoipSimpleSteps/CirclesTwo.svg"); }

.phone-features .parent .package-element.three:before {
  background-image: url("https://images.apps4.com/images/VoipSimpleSteps/CirlesThree.svg"); }

.phone-features .parent p {
  font-size: 22px;
  color: #31a5de; }
  .phone-features .parent p.greenText {
    color: #5fba13 !important;
    font-weight: 300;
    font-size: 40px;
    display: inline;
    position: absolute;
    margin: 36px 0 0 4px; }

.phone-features .parent .twoS {
  margin-right: 0px !important;
  text-align: right;
  padding-top: 20px; }
  .phone-features .parent .twoS .greenText {
    font-size: 65px;
    margin-left: -76px; }
  .phone-features .parent .twoS img {
    margin-right: 85px; }

.phone-features .parent .first {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .phone-features .parent .first .first-a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .phone-features .parent .first .first-b {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4; }
    .phone-features .parent .first .first-b .fr-sub {
      margin-left: 0px; }
  .phone-features .parent .first ul {
    list-style: none;
    margin-top: 23px; }
    .phone-features .parent .first ul li {
      font-size: 24px;
      padding: 6px;
      margin: 0 0 12px 2px; }
      .phone-features .parent .first ul li:before {
        content: "+";
        font-size: 45px;
        margin-right: 9px;
        color: #5fba13; }

.phone-features .parent .second {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  .phone-features .parent .second .second_class_p {
    margin-top: 22px; }

.phone-features .parent .fr-list li {
  font-size: 19px; }

.phone-features .parent .first-a .fr-sub,
.phone-features .parent .second .fr-sub {
  margin-left: 0px !important; }

.phone-features .parent .fr-header {
  font-size: 38px !important; }

@media screen and (min-width: 992px) {
  .phone-features .parent .second .subTitle {
    margin-left: 152px; }
  .phone-features .parent .fist-a .subTitle {
    margin-left: 42px; }
  .phone-features .parent .first-b .fr-sub {
    margin-left: 97px !important; }
  .phone-features .parent .first-b .subTitle {
    margin-left: 88px; }
  .phone-features .parent .second .fr-sub {
    margin-left: 0px !important; }
  .phone-features .parent .subTitle {
    margin-top: 5px;
    margin-left: 41px; }
  .phone-features .parent p.greenText {
    font-size: 60px !important; }
  .phone-features .parent .twoS .greenText {
    font-size: 100px !important; } }

@media screen and (min-width: 1440px) {
  .phone-features .parent .fr-header {
    font-size: 45px !important; }
  .phone-features .parent .first-a .fr-sub {
    margin-left: 158px !important; }
  .phone-features .parent .first-b .fr-sub {
    margin-left: 145px !important; } }

.success-message-voip-legal-form {
  display: block;
  text-align: center;
  background: #5dbb00;
  color: white;
  margin: 0;
  padding: 20px 0;
  font-weight: 900; }

.voip-legal {
  font-family: "ProximaNova";
  line-height: 22px;
  margin: 0 0 10px;
  font-size: 16px;
  color: #333; }
  .voip-legal .container-voip-legal {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px; }
  .voip-legal .voip-legal-logo {
    margin-bottom: 10px; }
    .voip-legal .voip-legal-logo img {
      max-width: 300px; }
  .voip-legal h2 {
    color: #025091;
    font-family: "MuseoSans-700", arial, sans-serif;
    font-size: 34px;
    line-height: 45px;
    margin: 10px 0; }
  .voip-legal h3 {
    color: #35a4dd;
    font-family: "MuseoSans-300", arial, sans-serif;
    font-size: 21px;
    margin: 10px 0; }
  .voip-legal ul {
    margin-left: 20px; }
  .voip-legal .iframe-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; }
    .voip-legal .iframe-container iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      display: block; }
  .voip-legal .hidden-mobile {
    display: none; }
    @media screen and (min-width: 768px) {
      .voip-legal .hidden-mobile {
        display: block; } }
  @media screen and (min-width: 768px) {
    .voip-legal .hidden-desktop {
      display: none; } }
  .voip-legal a.download-agreement {
    margin-top: 1em; }
  .voip-legal form.voip-legal-form {
    font-size: 16px;
    margin: 20px 0; }
    .voip-legal form.voip-legal-form .checkbox-text input[type=checkbox] {
      margin-right: 10px; }
    .voip-legal form.voip-legal-form .input-row {
      max-width: 500px;
      margin: 20px 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .voip-legal form.voip-legal-form .input-row .input-element label input[type=text] {
        margin-top: 5px; }
      .voip-legal form.voip-legal-form .input-row input[type=submit] {
        font-family: "MuseoSans-300", arial, sans-serif; }
      .voip-legal form.voip-legal-form .input-row input[type=text], .voip-legal form.voip-legal-form .input-row input[type=email] {
        padding: 5px;
        width: 100%;
        border-radius: 3px;
        border: 1px solid #d4d4d4;
        -webkit-appearance: none;
        -moz-appearance: none;
             appearance: none; }
      .voip-legal form.voip-legal-form .input-row.double .input-element {
        width: 50%; }
        .voip-legal form.voip-legal-form .input-row.double .input-element:first-child {
          margin-right: 10px; }

.os-list {
  display: block;
  font-family: "MuseoSans-300";
  margin-bottom: 1em; }
  .os-list .os-item {
    display: inline-block;
    list-style: none; }
    .os-list .os-item a {
      display: block;
      padding: 1em 2em;
      border: 1px solid #025091;
      min-width: 160px; }
      .os-list .os-item a.active {
        background: #025091;
        color: #ffffff; }

.plans h4 {
  color: #025091;
  font-size: 30px;
  text-align: left;
  font-family: "MuseoSans-500";
  margin: 1em 0;
  padding: 0 1em; }

.plans-table {
  padding: 0 1em;
  font-family: "MuseoSans-300";
  width: 100%;
  display: none;
  margin: 1em 0; }
  .plans-table.active, .plans-table.options-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .plans-table .plans-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
    .plans-table .plans-row .plans-cell {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      color: #025091;
      text-align: center;
      border-right: 1px solid #d4d4d4;
      border-bottom: 1px solid #d4d4d4;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      background: #f9f9f9;
      padding: 0.2em;
      font-size: 90%; }
      @media screen and (min-width: 768px) {
        .plans-table .plans-row .plans-cell {
          padding: 1em;
          font-size: 100%; } }
      .plans-table .plans-row .plans-cell:first-child {
        background: #ffffff; }
      .plans-table .plans-row .plans-cell .strong {
        font-family: "MuseoSans-700"; }
      .plans-table .plans-row .plans-cell .pricing .from {
        font-size: 12px;
        display: block;
        text-align: left;
        margin-bottom: 0.3em; }
      .plans-table .plans-row .plans-cell .pricing .price {
        font-size: 22px; }
        .plans-table .plans-row .plans-cell .pricing .price .dollar-sign,
        .plans-table .plans-row .plans-cell .pricing .price .digits {
          font-size: 17px; }
        .plans-table .plans-row .plans-cell .pricing .price .digits {
          display: inline-block;
          -webkit-transform: translateY(-42%) translateX(10%);
                  transform: translateY(-42%) translateX(10%); }
      .plans-table .plans-row .plans-cell .pricing .frequency {
        font-size: 16px;
        display: block; }
    .plans-table .plans-row.title-row .plans-cell {
      font-family: "MuseoSans-700";
      background: #025091;
      color: #ffffff; }
      .plans-table .plans-row.title-row .plans-cell:first-child {
        color: #025091;
        background: #ffffff; }
    .plans-table .plans-row.row-separator .plans-cell {
      border-top: 1px solid #333333; }
  .plans-table.options-table .plans-row .plans-cell {
    -ms-flex-preferred-size: 33.333333%;
        flex-basis: 33.333333%; }

@media screen and (min-width: 992px) {
  .webhosting-antispam-products h3 {
    min-height: 116px; } }

/*
.web-hosting-pricing{
	display:block;
	.price{
		font-size:2.5em;
	}
}*/
.fa.fa-check-circle, .fa.fa-plus-circle, .fa.fa-times-circle {
  font-size: 26px; }

.fa.fa-check-circle, .fa.fa-plus-circle {
  color: #6ac212; }

.fa.fa-times-circle {
  color: #e30613; }

/*
.flat-table-o365 .fa-check-circle,
.flat-table-cloud .fa-check-circle {
	font-size: 22px;
}

.flat-table-o365 .fa-times,
.flat-table-cloud .fa-times {
	font-size: 16px;
}

.csp-table i {
	font-size: 16px !important;
	left: -5px;
	position: relative;
}
*/
.notices--info {
  display: block;
  font-size: 12px;
  font-family: 'Proxima Nova'; }

.add-space {
  width: 100%;
  clear: both;
  height: 50px; }
  .add-space.x2 {
    height: 60px; }
  .add-space.d2 {
    height: 13px; }
  .add-space.d4 {
    height: 8px; }

.shadow_spacer {
  height: 80px;
  width: 100%;
  background: url("../img/shadow.png") top center no-repeat; }
  .shadow_spacer.reduced-margin {
    margin: 0px 0px -30px 0px;
    z-index: 9;
    position: relative; }

.hidden__div {
  display: none; }

/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none; }

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0; }

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden; }

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block; }

.flex-pauseplay span {
  text-transform: capitalize; }

/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block; }

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 30px 0 60px;
  background: #E4ECF5;
  /*border: 4px solid #fff;*/
  position: relative;
  zoom: 1;
  /*height: 350px;*/ }

.fadeslider {
  position: relative; }

.fadeslider .flex-control-nav {
  bottom: -30px; }

.flexslider.transparent {
  background: none;
  margin: 0px; }

.transparency {
  background: transparent;
  margin: 0px 0px 60px; }

.transparency h3 {
  font-size: 36px;
  font-family: "MuseoSans-700", arial, sans-serif;
  font-weight: normal;
  line-height: 36px;
  margin: 0px;
  color: #326295;
  padding: 0px 30px 30px; }

.transparency p {
  line-height: 26px;
  font-family: "ProximaNova", arial, sans-serif;
  font-size: 16px;
  color: #326295;
  padding: 0px 30px 30px; }

.transparency p + p {
  line-height: 26px;
  font-family: "ProximaNova", arial, sans-serif;
  font-size: 16px;
  color: #444444; }

.no-bg {
  display: table-cell;
  float: none;
  vertical-align: middle;
  width: 50%;
  background: transparent; }

.flex-viewport {
  max-height: 2000px; }

.loading .flex-viewport {
  max-height: 300px; }

.flexslider .slides {
  zoom: 1; }

.carousel li {
  margin-right: 5px; }

/* Direction Nav */
.flex-direction-nav a {
  width: 45px;
  height: 45px;
  margin: -20px 0 0;
  display: block;
  background: url("https://images.apps4.com/images/slidearrows.png") no-repeat 0 0;
  position: absolute;
  top: 50%;
  cursor: pointer;
  text-indent: -9999px;
  opacity: 0;
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease; }

.white-arrows .flex-direction-nav a {
  background: url("https://images.apps4.com/images/careers/slidearrows__white.png"); }

.flex-direction-nav .flex-next {
  background-position: 100% 0 !important;
  right: 0px; }

.flex-direction-nav .flex-prev {
  left: 0px; }

.flexslider.single:hover .flex-next {
  display: none; }

.flexslider.single:hover .flex-prev {
  display: none; }

.flexslider:hover .flex-next {
  opacity: 0.8;
  right: -25px; }

.flexslider:hover .flex-prev {
  opacity: 0.8;
  left: -25px; }

.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover {
  opacity: 1; }

.flex-direction-nav .disabled {
  opacity: 0.3 !important;
  filter: alpha(opacity=30);
  cursor: default; }

.fadeslider:hover .flex-next {
  opacity: 0.8;
  right: -40px; }

.fadeslider:hover .flex-prev {
  opacity: 0.8;
  left: -40px; }

.fadeslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover {
  opacity: 1; }

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -60px;
  text-align: center; }

.flexslider.transparent.regular-bottom .flex-control-nav.flex-control-paging {
  bottom: -30px; }

.flex-control-nav li {
  margin: 0 6px;
  zoom: 1;
  display: inline-block; }

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(48, 96, 149, 0.3);
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1); }

.flex-control-paging li a:hover {
  background: #333;
  background: #7fcb15; }

.flex-control-paging li a.flex-active {
  background: #000;
  background: #7fcb15;
  cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .active {
  opacity: 1;
  cursor: default; }

.first-group {
  display: table-row; }

.slider-left-side {
  float: left;
  width: 30%;
  height: 350px;
  background: #ffffff;
  padding: 3.5em; }

.slider-left-side img {
  margin: 0 auto;
  display: block; }

.slider-right-side {
  float: left;
  width: 60%;
  position: relative;
  padding: 2em; }

.slider-right-side > h3.title-case-study {
  line-height: normal;
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 20px;
  text-align: left;
  padding: 0px 0px 30px;
  color: #326295;
  font-weight: normal;
  text-shadow: 0px 1px 0px #fff; }

.slider-right-side p {
  font-family: "ProximaNova";
  color: #444444;
  line-height: 22px;
  font-size: 16px; }

.table-cell-left {
  display: table-cell;
  float: none;
  vertical-align: middle; }

.table-cell-right {
  display: table-cell;
  float: none;
  vertical-align: top;
  background: #e4ecf5;
  width: 100%; }

.slider-right-side.table-cell-right:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 15px 0px;
  border-color: transparent #e4ecf5 transparent transparent;
  position: absolute;
  left: -10px;
  top: 50%;
  margin-top: -15px; }

.promo-flexslider {
  position: relative; }

.promo-slider {
  color: #ffffff;
  padding: 30px 30px 0px; }

.flexslider-controls-banner li:hover {
  cursor: pointer; }

.flex-control-nav {
  color: #ffffff; }

.promo-slider p {
  max-width: 740px; }

.promo-slider li {
  text-align: left; }

.promo-slider h1 {
  font-family: "MuseoSans-700";
  text-transform: capitalize;
  font-size: 38px;
  padding: 0px 0px 30px;
  letter-spacing: -1px;
  text-shadow: 0px 1px 2px #000;
  font-weight: normal; }

.promo-slider p {
  font-family: "ProximaNova";
  line-height: 30px;
  font-size: 18px;
  padding: 0px 0px 40px; }

.banner-control-nav {
  color: #ffffff;
  padding: 0px 0px 60px;
  position: relative; }

.banner-control-nav li {
  font-family: "ProximaNova-Bold";
  text-transform: uppercase;
  padding: 0px 4px;
  font-size: 13.5px;
  text-shadow: 0px 1px 0px #000; }

.banner-control-nav .flex-active {
  color: #7fcb15;
  /*border-top: 2px solid;*/
  padding: 10px;
  display: inline-block;
  text-shadow: 0px 1px 0px #000; }

.promo-flexslider .flex-direction-nav {
  position: relative; }

.promo-flexslider a.flex-prev:hover {
  opacity: 1; }

.promo-flexslider a.flex-next:hover {
  opacity: 1; }

.promo-flexslider .flex-direction-nav {
  top: 50%;
  position: absolute;
  right: 0px;
  z-index: 9;
  margin-top: -10px; }

.promo-flexslider > .flex-direction-nav .flex-prev {
  left: inherit;
  right: 75px;
  background: url(../img/slidearrows-white.png) no-repeat;
  opacity: .8; }

.promo-flexslider > .flex-direction-nav .flex-next {
  background: url(../img/slidearrows-white.png) no-repeat;
  background-position: 100% 0;
  right: 0px;
  opacity: .65; }

.content-promo-slider {
  display: none; }

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 0;
    display: none; }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 0;
    display: none; } }

@media screen and (max-width: 680px) {
  .table-cell-left {
    display: none; }
  .table-cell-right {
    background: #fff; }
  .n_show {
    display: none; }
  .no-bg {
    text-align: center;
    width: 100%; }
  .slider-right-side > h3.title-case-study {
    text-align: center; }
  .slider-right-side p {
    text-align: center; }
  a.btn-case-study {
    position: relative;
    top: 15px !important;
    left: 0px;
    margin: 0 auto;
    display: block;
    text-align: center; }
  .promo-slider {
    padding: 20px 0px 0px; }
  .promo-slider li {
    text-align: center; }
  .banner-control-nav {
    padding: 0px 0px 0px;
    bottom: -20px; }
  .banner-control-nav li {
    font-family: "ProximaNova-Bold";
    text-transform: uppercase;
    padding: 10px 20px; } }

div#flexslider-container {
  clear: both; }

.flexslider #img-list img {
  max-height: 85px;
  max-width: 200px;
  display: inline-block;
  margin: 0px 10px;
  width: auto; }

.success-message {
  display: none; }

.gdpr-info label {
  margin-left: 0.5em !important; }

.horizontal-form.single-field {
  max-width: 768px;
  margin: 0 auto; }

.mktoFormRow:not(:last-child) {
  padding-bottom: 10px; }

@media only screen and (min-width: 992px) {
  .horizontal-form .mktoForm .mktoFormRow {
    margin-right: 15px; }
    .horizontal-form.three-fields .mktoForm .mktoFormRow {
      width: calc( (100% / 3) - 11px); }
      .horizontal-form.three-fields .mktoForm .mktoFormRow:nth-child(4) {
        margin-right: 0; }
    .horizontal-form.two-fields .mktoForm .mktoFormRow {
      width: calc( (100% / 2) - 11px); }
      .horizontal-form.two-fields .mktoForm .mktoFormRow:nth-child(3) {
        margin-right: 0; }
    .horizontal-form.three-fields.single-block .mktoForm .mktoFormRow {
      width: 100%; }
    .horizontal-form.three-fields.single-block .mktoForm .mktoFormCol {
      width: calc( (100% / 3) - 11px);
      display: inline-block;
      padding: 0 5px; }
    .horizontal-form.three-fields.single-block .mktoForm .mktoButtonRow {
      margin-top: 0; }
    .horizontal-form .mktoForm .mktoFormRow:not(.gdpr-info) {
      display: inline-block; }
    .horizontal-form .mktoForm .mktoFormRow.checkbox label, .horizontal-form .mktoForm .mktoFormRow.select-dropdown label {
      text-transform: none; } }

/*====================================================
Magnific Popup CSS
====================================================*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  overflow: hidden;
  position: fixed;
  background: #ffffff;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 10; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: auto;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #d4d4d4;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 9; }

.mfp-preloader a {
  color: #d4d4d4; }

.mfp-preloader a:hover {
  color: #ffffff; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 9;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #ffffff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #ffffff;
  right: -6px;
  text-align: right;
  padding-right: 11px; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #d4d4d4;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(11, 11, 11, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #ffffff;
  margin-left: 31px; }

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #333333; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #ffffff;
  margin-left: 39px; }

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #333333; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1200px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(11, 11, 11, 0.6);
          box-shadow: 0 0 8px rgba(11, 11, 11, 0.6);
  background: #0b0b0b; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(11, 11, 11, 0.6);
          box-shadow: 0 0 8px rgba(11, 11, 11, 0.6);
  background: #333333; }

.mfp-figure small {
  color: #d4d4d4;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(11, 11, 11, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(11, 11, 11, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

/* Styles for dialog window */
#small-dialog {
  background: #ffffff;
  padding: 20px 30px;
  text-align: left;
  max-width: 400px;
  margin: 40px auto;
  position: relative; }

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  transform: scale(0.8); }

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0; }

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8; }

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg); }

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0); }

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg); }

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8; }

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0; }

.mfp-close-btn-in .mfp-close {
  color: #ffffff;
  background: #025091;
  opacity: 1;
  border-radius: 49%;
  right: -20px;
  top: -20px;
  height: 40px;
  width: 40px;
  padding-right: 0px;
  text-align: center; }

/*
//OLD CLOUD CSS //NOT USED ?
// ANTHONY MANAGED SERVERS STYLE
.fancybox-margin {
    margin-right: 0px;
}
*/
.no-overflow-image-section {
  overflow: hidden;
  position: relative;
  display: none; }
  @media screen and (min-width: 992px) {
    .no-overflow-image-section {
      height: 605px;
      display: block; } }
  @media screen and (min-width: 992px) {
    .no-overflow-image-section .absolute-fullsize-image {
      max-width: inherit;
      height: 100%;
      -webkit-transform: translateX(-10%);
              transform: translateX(-10%);
      left: 0;
      top: 0; } }

.white-popup-block label {
  font-family: 'ProximaNova-Bold' !important;
  font-size: 14px !important;
  font-style: normal !important;
  color: #025091 !important;
  width: 100% !important; }

.white-popup-block input[type],
.white-popup-block textarea {
  font-family: 'ProximaNova' !important;
  color: #333333 !important; }

.white-popup-block .gdpr-info {
  padding: 0.5rem !important; }

/* RESET GLOBAL ASTERIX
   ==================================================== */
[id^="mktoForm_"] .mktoAsterix {
  display: none !important; }

.mktoForm input[type=text], .mktoForm input[type=url], .mktoForm input[type=email], .mktoForm input[type=tel], .mktoForm input[type=number], .mktoForm input[type=date], .mktoForm select.mktoField, .mktoForm textarea.mktoField {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  width: 100% !important;
  padding: 10px 15px !important;
  border-radius: 0 !important; }

.mktoForm {
  width: 100% !important; }
  .mktoForm,
  .mktoForm * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .mktoForm:after {
    content: "";
    display: table; }
  .mktoForm .gdpr-info {
    margin-top: -8px;
    border: 1px solid #e1e1e1; }
    .mktoForm .gdpr-info p,
    .mktoForm .gdpr-info label {
      font-family: 'ProximaNova';
      font-size: 14px !important;
      line-height: 19px !important; }
    .mktoForm .gdpr-info label:hover {
      cursor: pointer; }
  .mktoForm .mktoClear,
  .mktoForm .mktoFormRow.hidden,
  .mktoForm .mktoGutter,
  .mktoForm .mktoOffset {
    display: none; }
  .mktoForm .mktoAsterix,
  .mktoForm .mktoRequiredField .mktoAsterix {
    color: getColor("red");
    padding: 0 5px 0 0;
    float: left; }
  .mktoForm .mktoFieldWrap,
  .mktoForm .mktoFormCol {
    width: 100%;
    margin-bottom: 5px; }
    .mktoForm .mktoFieldWrap > label,
    .mktoForm .mktoFormCol > label {
      width: 100% !important; }
      .mktoForm .mktoFieldWrap > label:hover,
      .mktoForm .mktoFormCol > label:hover {
        cursor: pointer; }
  .mktoForm .mktoFormCol {
    margin: 0 !important; }
  .mktoForm .mktoRadioList {
    width: 100% !important; }
  .mktoForm .mktoButtonRow,
  .mktoForm .mktoFormRow {
    width: 100%; }
  .mktoForm input[type="date"],
  .mktoForm input[type="email"],
  .mktoForm input[type="number"],
  .mktoForm input[type="tel"],
  .mktoForm input[type="text"],
  .mktoForm input[type="url"],
  .mktoForm select.mktoField,
  .mktoForm textarea.mktoField {
    height: auto;
    line-height: normal;
    font-size: 14px;
    border-radius: 0;
    min-height: 40px;
    font-family: 'ProximaNova'; }
  .mktoForm .mktoFormRow input,
  .mktoForm .mktoFormRow select,
  .mktoForm .mktoFormRow textarea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 16px;
    line-height: 1rem;
    font-weight: 500;
    width: 100% !important; }
  .mktoForm .mktoFormRow label {
    float: left;
    font-family: 'ProximaNova-bold';
    color: #025091;
    font-size: 16px; }
  .mktoForm .mktoFormRow label[for*="mktoRadio_"] {
    margin: 0 0 15px 5px; }
  .mktoForm .mktoFormRow input:not(input[type="radio"]),
  .mktoForm .mktoFormRow select,
  .mktoForm .mktoFormRow textarea {
    float: right;
    min-height: 30px; }
  .mktoForm .mktoFormRow input,
  .mktoForm .mktoFormRow textarea,
  .mktoForm .mktoFormRow select {
    padding: 10px;
    border: 1px solid #e1e1e1;
    font-family: 'ProximaNova'; }
    .mktoForm .mktoFormRow input:placeholder,
    .mktoForm .mktoFormRow textarea:placeholder,
    .mktoForm .mktoFormRow select:placeholder {
      color: red; }
  .mktoForm .mktoFormRow input[type=checkbox] {
    float: none;
    clear: left;
    padding: 0;
    margin: 0 5px 0 0;
    border: none;
    vertical-align: middle;
    position: relative;
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    border: 1px solid #707070;
    height: 20px !important;
    width: 20px !important; }
  .mktoForm .mktoFormRow input[type="checkbox"]:not(:disabled) {
    -webkit-box-shadow: inset 1px 1px 0 #fff, 0 1px 1px rgba(0, 0, 0, 0.1);
            box-shadow: inset 1px 1px 0 #fff, 0 1px 1px rgba(0, 0, 0, 0.1); }
  .mktoForm .mktoFormRow input[type="checkbox"]:not(:disabled):hover {
    border-color: rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 1px 1px 0 #fff, 0 0 4px rgba(0, 0, 0, 0.1);
            box-shadow: inset 1px 1px 0 #fff, 0 0 4px rgba(0, 0, 0, 0.1); }
  .mktoForm .mktoFormRow input[type="checkbox"]:active:not(:disabled) {
    background-image: -webkit-linear-gradient(#C2C2C2, #EFEFEF);
    -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.2), inset -1px -1px 0 rgba(255, 255, 255, 0.6);
            box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.2), inset -1px -1px 0 rgba(255, 255, 255, 0.6);
    border-color: #707070; }
  .mktoForm .mktoFormRow input[type="checkbox"]:checked {
    border-color: #707070; }
  .mktoForm .mktoFormRow input[type="checkbox"]:checked,
  .mktoForm .mktoFormRow input[type="checkbox"]:checked:active {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAMAAADXT/YiAAAAOVBMVEX///8zMzMqKipCQkI8PDwzMzNISEhISEhISEhCQkIqKio8PDwzMzMqKipISEhCQkI8PDwzMzMqKipFad0NAAAAE3RSTlMAIiIzMzNEZnd3qru7u8zMzMzMuKlnZwAAADhJREFUCNdjYIACJhjNJQRl8ApBWIw8goKsDDw8UAaDgAA3t4AAC1CGkx8ImMGKOPj42KAmsEMYAEUyAa2GdxXhAAAAAElFTkSuQmCC") center no-repeat, -webkit-linear-gradient(#FCFCFC, #DFDFDF); }
  .mktoForm .mktoFormRow input[type=radio] {
    float: left;
    clear: left;
    width: 15px !important;
    height: 25px;
    padding: 0;
    margin: 0;
    border: none; }
  .mktoForm .mktoFormRow select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAG0lEQVR42mNgwAfKy8v/48I4FeA0AacVDFQBAP9wJkE/KhUMAAAAAElFTkSuQmCC");
    background-repeat: no-repeat;
    background-color: #ffffff;
    background-position: calc(100% - 5px);
    -webkit-appearance: none;
    -webkit-border-radius: 0; }
  .mktoForm .mktoFormRow textarea {
    height: auto; }
  .mktoForm .mktoFormRow.checkbox label {
    width: 83% !important;
    margin: 0 0 0 36px;
    text-transform: none; }
  .mktoForm .mktoFormRow.checkbox input {
    margin-top: -34px; }
  .mktoForm .mktoButtonRow {
    text-align: center;
    margin-top: 18px;
    margin-bottom: 15px; }
    .mktoForm .mktoButtonRow .mktoButtonWrap {
      margin: 0 !important; }
      .mktoForm .mktoButtonRow .mktoButtonWrap button.mktoButton {
        /*
                transition: all 0.34s ease 0s;
                border: none;
                bottom: 30px;
                color: #fff;
                font-size: 20px;
                padding: 10px 80px;
                text-align: center;
                text-decoration: none;
                border-radius: 0;
                margin: 0px;
                background: #e40713;
                font-family: 'ProximaNova-Bold';
                text-transform: uppercase;
                &:hover {
                    background: darken(#e40713, 5%);
                }
                &:active {
                    position: relative;
                    top: 1px;
                }
                */
        max-width: 300px;
        margin: 0 auto; }

/* MARKETO PARTNER INLINE FORM - ONE FIELD FORM
   ==================================================== */
#ask_experts.partner-infokit .mktoForm .mktoFormRow {
  width: 50%;
  float: none;
  display: inline-block; }

#ask_experts.partner-infokit .mktoForm .mktoFormCol {
  width: 100%; }

#ask_experts.partner-infokit label.mktoLabel.mktoHasWidth {
  margin-bottom: 0px;
  display: none; }

#ask_experts.partner-infokit span.mktoButtonWrap {
  margin: 0px !important; }

#ask_experts.partner-infokit .mktoGutter,
#ask_experts.partner-infokit .mktoOffset,
#ask_experts.partner-infokit .mktoAsterix {
  display: none; }

/* MARKETO ADVISOR PROGRAM 4 FIELDS INLINE
   ==================================================== */
#ask_experts #mktoForm_1482 .mktoFieldDescriptor.mktoFormCol,
#ask_experts #mktoForm_1483 .mktoFieldDescriptor.mktoFormCol {
  width: 25%; }
  #ask_experts #mktoForm_1482 .mktoFieldDescriptor.mktoFormCol:nth-child(3),
  #ask_experts #mktoForm_1483 .mktoFieldDescriptor.mktoFormCol:nth-child(3) {
    padding-right: 20px !important; }

#ask_experts.advisor-form #mktoForm_1482 .mktoHtmlText.mktoHasWidth,
#ask_experts.advisor-form #mktoForm_1483 .mktoHtmlText.mktoHasWidth {
  text-align: center !important;
  width: 100% !important; }

#ask_experts.advisor-form .mktoForm .mktoFormRow:nth-child(3) .mktoFormCol {
  width: 100% !important; }

@media screen and (max-width: 603px) {
  #ask_experts #mktoForm_1482 .mktoFieldDescriptor.mktoFormCol,
  #ask_experts #mktoForm_1483 .mktoFieldDescriptor.mktoFormCol {
    width: 100%; } }

.mktoForm .mktoButtonWrap .mktoButton {
  background: #025091 !important;
  border: 0px !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  border-radius: 0 !important;
  display: block;
  width: 100%; }
  .mktoForm .mktoButtonWrap .mktoButton:hover {
    border: none !important; }

#ask_experts [id^="mktoForm_"] {
  width: 100% !important;
  text-align: center; }
  #ask_experts [id^="mktoForm_"] .mktoForm .mktoFormRow {
    clear: both;
    width: 100%;
    float: left; }

/*
.db-bg .mktoFormRow:nth-child(3) .mktoFieldDescriptor.mktoFormCol #commentCapture,
.white-bg .mktoFormRow:nth-child(3) .mktoFieldDescriptor.mktoFormCol #commentCapture,
.mktoFormRow:nth-child(3) .mktoFieldDescriptor.mktoFormCol #commentCapture {
    width: 100% !important;
    height: 150px;
    background-color: $white;
    font-family: "MuseoSans-500", arial, sans-serif;
    font-size: 18px;
    color: $secondary;
    padding: 10px !important;
}
*/
.mktoFormRow:nth-child(3) .mktoFieldDescriptor.mktoFormCol {
  width: 100% !important; }

/*
.white-bg .mktoFormRow:nth-child(3) .mktoFieldDescriptor.mktoFormCol #commentCapture {
    border: 1px solid $primary !important;
}

.mktoFormRow:nth-child(3) .mktoFieldDescriptor.mktoFormCol #commentCapture {
    border: none!important;
}*/
.solid-blue-bg #ask_experts label.mktoLabel.mktoHasWidth {
  color: #ffffff; }

.solid-blue-bg #ask_experts .mktoFieldWrap.mktoRequiredField input {
  background: #ffffff; }

/*====================================================
MARKETO 3 FIELDS INLINE
====================================================*/
/*====================================================
// ASK EXPERTS REGULAR 3 FOMS INPUT FIELD
====================================================*/
#ask_experts .mktoForm .mktoFormCol {
  float: left;
  position: relative;
  min-height: 2em;
  width: 33.3333333%;
  padding: 0px 10px 0px 10px !important;
  margin-bottom: 0px !important; }

#ask_experts .mktoForm .mktoFormCol:nth-child(3) {
  margin-right: 0px !important;
  padding-right: 10px !important; }

#ask_experts span.mktoButtonWrap.mktoNative,
#ask_experts span.mktoButtonWrap.mktoSimple {
  margin-left: 0px !important; }

#ask_experts .mktoForm input[type=tel],
#ask_experts .mktoForm input[type=text], #ask_experts .mktoForm input[type=email] {
  background: #dae4ef;
  border: none !important;
  width: 100% !important;
  height: 39px;
  -webkit-box-shadow: none;
          box-shadow: none; }

/* Force input type=[tel] to keep the height equal to the siblings */
.db-bg #ask_experts .mktoFieldWrap.mktoRequiredField input,
.db-bg #ask_experts .mktoForm input[type=tel],
.db-bg #ask_experts .mktoForm input[type=email],
.db-bg #ask_experts .mktoFieldWrap.mktoRequiredField input,
.db-bg #ask_experts .mktoForm input[type=tel],
.db-bg #ask_experts .mktoForm input[type=email],
.md-bg #ask_experts .mktoFieldWrap.mktoRequiredField input,
.md-bg #ask_experts .mktoForm input[type=tel],
.md-bg #ask_experts .mktoForm input[type=email],
.md-bg #ask_experts .mktoFieldWrap.mktoRequiredField input,
.md-bg #ask_experts .mktoForm input[type=tel],
.md-bg #ask_experts .mktoForm input[type=email] {
  background: white !important; }

/*====================================================
MARKETO OFFICE 365 FREE TRIAL
====================================================*/
.marketo-form-o365 #ask_experts .mktoFieldWrap.mktoRequiredField input,
.md-bg #ask_experts .mktoFieldWrap.mktoRequiredField input,
.md-bg #ask_experts input[type=tel] {
  background: #ffffff !important;
  border: 0 !important;
  width: 100% !important;
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 18px;
  color: #3dabe8;
  padding: 9px 20px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 0 !important; }

body.fr .marketo-form-o365 .section-title {
  font-size: 32px;
  margin: 0px 10px;
  line-height: 36px; }

/*====================================================
GENERIC STYLES
====================================================*/
#ask_experts {
  /*label.mktoLabel.mktoHasWidth {
        width: 100% !important;
        display: block;
        font-family: 'MuseoSans-300It', arial, sans-serif;
        color: $primary;
        position: relative;
        font-size: 17px;
        overflow: hidden;
        margin-bottom: 10px;
        font-weight: normal;
        margin: 0;
    }

    label.mktoLabel.mktoHasWidth:after {
        content: " ";
        height: 1px;
        width: 0%;
        background: $bg-dark;
        left: 85px;
        top: 10px;
        position: absolute;
    }

    .mktoForm button.mktoButton {
        background: $green;
        padding: 7px 40px;
        color: $white;
        display: inline-block;
        border: none;
        font-family: "MuseoSans-300", arial, sans-serif;
        font-size: 18px;
        transition: all 0.14s ease 0.14s;
    }
    */ }
  #ask_experts .mktoForm .mktoFieldWrap {
    float: left;
    width: 100%; }

div#ask_experts .mktoForm button.mktoButton:hover {
  background: #025091; }

div#ask_experts .mktoForm .mktoAsterix {
  color: #025091 !important;
  font-size: 12px;
  display: none; }

div#ask_experts .mktoForm .mktoLabel {
  padding-top: 0px !important; }

div#ask_experts div.mktoButtonRow {
  margin-top: 25px !important; }

div#ask_experts .mktoError {
  right: 41px;
  bottom: 10px !important; }

/*====================================================
MEDIA QUERIES MARKETO FORM
====================================================*/
@media screen and (max-width: 799px) {
  div#ask_experts .mktoForm .mktoFormRow {
    width: 100%; }
  div#vertical-form-mkto form#mktoForm_1063 .mktoFormCol,
  div#vertical-form-mkto form#mktoForm_1064 .mktoFormCol {
    padding: 0px !important; } }

@media screen and (max-width: 603px) {
  div#ask_experts .mktoForm .mktoFormCol {
    width: 100%;
    margin: 0px 0px; }
  div#ask_experts.partner-infokit .mktoForm .mktoFormRow {
    width: 100%; }
  div#ask_experts.partner-infokit div.mktoButtonRow {
    float: left;
    margin-top: 25px !important;
    width: 100%;
    padding: 0px 15px 0px 19px; }
  div#ask_experts.partner-infokit .mktoForm button.mktoButton {
    padding: 10px !important;
    width: 100%;
    margin: 10px 0px 0px 0px !important; } }

@media screen and (max-width: 926px) {
  div#ask_experts .mktoForm .mktoFormRow {
    clear: both;
    width: 100%;
    float: left; }
  div#vertical-form-mkto form#mktoForm_1063 .mktoFormCol:first-child,
  div#vertical-form-mkto form#mktoForm_1064 .mktoFormCol:first-child {
    padding-left: 0px !important; }
  div#vertical-form-mkto form#mktoForm_1063 button.mktoButton,
  div#vertical-form-mkto form#mktoForm_1064 button.mktoButton {
    margin: 0px 0px;
    padding: 7px 40px; } }

.holder-blocks.ebook .cf_sign_on {
  display: none; }

div.holder-blocks.ebook form#mktoForm_1007,
div.holder-blocks.ebook form#mktoForm_1009 {
  width: 100% !important; }

div.holder-blocks.ebook .mktoForm .mktoFormCol {
  padding: 0px 20px 0px 0px; }

div.holder-blocks.ebook .mktoForm button.mktoButton {
  background: #6ac212;
  padding: 9px 40px;
  color: #ffffff;
  display: inline-block;
  border: none;
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 18px;
  -webkit-transition: all 0.14s ease 0.14s;
  transition: all 0.14s ease 0.14s; }

div.holder-blocks.ebook .mktoForm button.mktoButton:hover {
  background: #025091; }

div.holder-blocks.ebook form#mktoForm_1007 span.mktoButtonWrap.mktoSimple,
div.holder-blocks.ebook form#mktoForm_1009 span.mktoButtonWrap.mktoSimple {
  margin-left: 10px !important; }

div.holder-blocks.ebook label.mktoLabel.mktoHasWidth {
  width: 100% !important;
  display: block;
  font-family: 'MuseoSans-300It', arial, sans-serif;
  color: #025091;
  position: relative;
  font-size: 17px;
  overflow: hidden;
  margin-bottom: 10px; }

div.holder-blocks.ebook .mktoForm .mktoAsterix {
  color: #025091 !important;
  font-size: 12px; }

div.holder-blocks.ebook .mktoFieldWrap input {
  width: 100% !important;
  height: inherit;
  border: none;
  padding: 5px 20px;
  font-family: "MuseoSans-300", arial, sans-serif;
  font-size: 18px;
  color: #025091; }

@media screen and (max-width: 899px) {
  div.holder-blocks.ebook {
    text-align: center; }
  div.holder-blocks.ebook .left-content {
    padding: 10px; }
  div.holder-blocks.ebook .left-content h4 {
    max-width: 100%;
    padding: 60px 0px 0px 0px; }
  div.holder-blocks.ebook .holder-1 {
    display: none; }
  div.holder-blocks.ebook .mktoForm .mktoFormCol {
    width: 100%; }
  div.holder-blocks.ebook .mktoForm .mktoFieldWrap {
    width: 100%; }
  div.holder-blocks.ebook .mktoForm .mktoFieldWrap input {
    width: 100% !important; }
  div.holder-blocks.ebook form#mktoForm_1007 span.mktoButtonWrap.mktoSimple,
  div.holder-blocks.ebook form#mktoForm_1009 span.mktoButtonWrap.mktoSimple {
    margin-left: 0px !important; }
  div.holder-blocks.ebook form#mktoForm_1007 .mktoButtonRow,
  div.holder-blocks.ebook form#mktoForm_1009 .mktoButtonRow {
    width: 100%;
    padding: 0px 20px 0px 0px; }
  div.holder-blocks.ebook .mktoForm button.mktoButton {
    width: 100%; } }

#vertical-form-mkto form#mktoForm_1063,
#vertical-form-mkto form#mktoForm_1064 {
  text-align: left !important; }

#vertical-form-mkto .mktoFormCol {
  width: 100% !important; }

div#ask_experts #mktoForm_1312,
div#ask_experts #mktoForm_1517,
div#ask_experts #mktoForm_1518,
div#ask_experts #mktoForm_1313,
div#ask_experts #mktoForm_1386,
div#ask_experts #mktoForm_1387,
div#ask_experts #mktoForm_1462,
div#ask_experts #mktoForm_1463,
div#ask_experts #mktoForm_1492,
div#ask_experts #mktoForm_1493,
div#ask_experts #mktoForm_1571,
div#ask_experts #mktoForm_1572,
div#ask_experts #mktoForm_1610,
div#ask_experts #mktoForm_1613 {
  padding: 10px 5px 0px 0px; }

div#ask_experts #mktoForm_1312 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1610 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1613 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1517 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1518 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1313 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1386 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1387 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1462 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1463 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1492 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1493 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1571 .mktoForm .mktoFormRow,
div#ask_experts #mktoForm_1572 .mktoForm .mktoFormRow {
  width: inherit !important; }

div#ask_experts.form-virtual-machines .mktoFieldDescriptor.mktoFormCol {
  width: 100% !important;
  padding: 0px !important; }

div#ask_experts.form-virtual-machines .mktoGutter.mktoHasWidth {
  position: relative;
  margin-left: -10px; }

div#ask_experts.form-virtual-machines .mktoFieldWrap.mktoRequiredField input[type=email],
div#ask_experts.form-virtual-machines .mktoFieldWrap.mktoRequiredField input[type=tel] {
  width: 75% !important;
  background: #e4ecf4 !important; }

body.fr div#ask_experts.form-virtual-machines .mktoFieldWrap.mktoRequiredField input[type=email],
body.fr div#ask_experts.form-virtual-machines .mktoFieldWrap.mktoRequiredField input[type=tel] {
  width: 65% !important; }

div#ask_experts #mktoForm_1312 input[type=radio],
div#ask_experts #mktoForm_1610 input[type=radio],
div#ask_experts #mktoForm_1613 input[type=radio],
div#ask_experts #mktoForm_1517 input[type=radio],
div#ask_experts #mktoForm_1518 input[type=radio],
div#ask_experts #mktoForm_1386 input[type=radio],
div#ask_experts #mktoForm_1313 input[type=radio],
div#ask_experts #mktoForm_1387 input[type=radio],
div#ask_experts #mktoForm_1462 input[type=radio],
div#ask_experts #mktoForm_1463 input[type=radio],
div#ask_experts #mktoForm_1492 input[type=radio],
div#ask_experts #mktoForm_1493 input[type=radio],
div#ask_experts #mktoForm_1571 input[type=radio],
div#ask_experts #mktoForm_1572 input[type=radio] {
  width: 15px !important;
  height: 15px !important;
  float: left; }

div#ask_experts #mktoForm_1312 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1610 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1613 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1517 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1518 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1386 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1313 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1387 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1462 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1463 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1492 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1493 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1571 .mktoRadioList.mktoHasWidth.mktoRequired,
div#ask_experts #mktoForm_1572 .mktoRadioList.mktoHasWidth.mktoRequired {
  width: 100% !important;
  padding: 0px; }

div#ask_experts #mktoForm_1517 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1518 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1312 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1610 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1613 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1386 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1313 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1387 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1462 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1463 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1492 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1493 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1571 .mktoRadioList.mktoHasWidth.mktoRequired > label,
div#ask_experts #mktoForm_1572 .mktoRadioList.mktoHasWidth.mktoRequired > label {
  color: #025091 !important;
  position: relative;
  font-family: "ProximaNova" !important;
  font-size: 14px;
  top: 1px; }

div#ask_experts.form-virtual-machines .mktoFormRow:nth-child(2) {
  width: 100%;
  float: left; }

div#ask_experts.form-virtual-machines .mktoFormRow:nth-child(2) label.mktoLabel.mktoHasWidth {
  margin-bottom: 10px;
  font-family: "MuseoSans-700it"; }

div#ask_experts.form-virtual-machines .mktoFormRow:nth-child(3) {
  /*background:crimson;*/
  width: 100%;
  float: right; }

div#ask_experts.form-virtual-machines .mktoFormRow:nth-child(3) label.mktoLabel.mktoHasWidth {
  margin-bottom: 10px; }

div#ask_experts.form-virtual-machines .mktoFormRow .mktoOffset {
  display: none; }

div#ask_experts #mktoForm_1312 .mktoButtonRow,
div#ask_experts #mktoForm_1610 .mktoButtonRow,
div#ask_experts #mktoForm_1613 .mktoButtonRow,
div#ask_experts #mktoForm_1517 .mktoButtonRow,
div#ask_experts #mktoForm_1518 .mktoButtonRow,
div#ask_experts #mktoForm_1386 .mktoButtonRow,
div#ask_experts #mktoForm_1313 .mktoButtonRow,
div#ask_experts #mktoForm_1387 .mktoButtonRow,
div#ask_experts #mktoForm_1462 .mktoButtonRow,
div#ask_experts #mktoForm_1463 .mktoButtonRow,
div#ask_experts #mktoForm_1492 .mktoButtonRow,
div#ask_experts #mktoForm_1493 .mktoButtonRow,
div#ask_experts #mktoForm_1571 .mktoButtonRow,
div#ask_experts #mktoForm_1572 .mktoButtonRow {
  margin-top: 25px !important;
  margin-right: 2px;
  float: left;
  margin-bottom: 30px; }

.mktoForm input[type=radio]:checked + label:before {
  background-position: 2px 2px !important; }

@media screen and (max-width: 926px) {
  div#ask_experts.form-virtual-machines .mktoForm button.mktoButton {
    margin: 0px 0px 30px 0px;
    padding: 7px 40px; }
  div#ask_experts.form-virtual-machines .mktoForm .mktoFormCol:first-child {
    padding-left: 0px !important; } }

@media screen and (max-width: 790px) {
  .rds-form .c-35 {
    display: none; }
  .rds-form .c-65 {
    width: 100%;
    text-align: center; }
    .rds-form .c-65 li {
      display: inline-block; }
    .rds-form .c-65 .add-space {
      display: none; } }

@media screen and (max-width: 480px) {
  div#ask_experts #mktoForm_1312,
  div#ask_experts #mktoForm_1610,
  div#ask_experts #mktoForm_1613,
  div#ask_experts #mktoForm_1517,
  div#ask_experts #mktoForm_1518,
  div#ask_experts #mktoForm_1386,
  div#ask_experts #mktoForm_1387,
  div#ask_experts #mktoForm_1313,
  div#ask_experts #mktoForm_1462,
  div#ask_experts #mktoForm_1463,
  div#ask_experts #mktoForm_1492,
  div#ask_experts #mktoForm_1493,
  div#ask_experts #mktoForm_1571,
  div#ask_experts #mktoForm_1572 {
    padding: 0px 5px; } }

#mktoForm_1380 .mktoHasWidth,
#mktoForm_1381 .mktoHasWidth {
  margin-bottom: 0px !important; }

div#ask_experts form#mktoForm_1380 div.mktoButtonRow,
div#ask_experts form#mktoForm_1381 div.mktoButtonRow {
  margin-top: 25px !important; }

#mktoForm_1380 .mktoButtonRow,
#mktoForm_1381 .mktoButtonRow {
  float: left; }

form#mktoForm_1437 span.mktoButtonWrap.mktoSimple,
form#mktoForm_1442 span.mktoButtonWrap.mktoSimple {
  margin-left: 95px !important; }

form#mktoForm_1437 .mktoForm .mktoButtonWrap.mktoSimple .mktoButton,
form#mktoForm_1442 .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
  background: #025091 !important;
  border: 0px !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  border-radius: 0 !important; }

/*====================================================
Advisor DPOR Form
====================================================*/
div#ask_experts.cloud-solutions .mktoForm input[type=email] {
  width: 50% !important;
  background: #e4ecf4 !important;
  border: none !important;
  padding: 0px 0px 0px 20px;
  font-family: "MuseoSans-500", arial, sans-serif;
  font-size: 18px;
  color: #3dabe8; }

@media only screen and (max-width: 480px) {
  div#ask_experts.cloud-solutions .mktoForm input[type=email] {
    width: 94% !important;
    height: 40px; }
  div#ask_experts.cloud-solutions #mktoForm_1517 .mktoButtonRow,
  div#ask_experts.cloud-solutions #mktoForm_1518 .mktoButtonRow {
    margin-top: 10px !important; } }

@media only screen and (max-width: 480px) {
  .mktoForm .mktoFieldWrap {
    margin-bottom: 10px; } }

.ask_experts_new .mktoForm {
  max-width: 800px;
  margin: 0 auto; }
  .ask_experts_new .mktoForm textarea.mktoField {
    margin-bottom: 0.5rem; }
  .ask_experts_new .mktoForm input[type="text"], .ask_experts_new .mktoForm input[type="email"], .ask_experts_new .mktoForm input[type="tel"] {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #025091;
    color: #025091;
    margin-bottom: 0.5rem; }
    .ask_experts_new .mktoForm input[type="text"]::-webkit-input-placeholder, .ask_experts_new .mktoForm input[type="email"]::-webkit-input-placeholder, .ask_experts_new .mktoForm input[type="tel"]::-webkit-input-placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #025091;
      font-family: 'ProximaNova-LightIt'; }
    .ask_experts_new .mktoForm input[type="text"]:-ms-input-placeholder, .ask_experts_new .mktoForm input[type="email"]:-ms-input-placeholder, .ask_experts_new .mktoForm input[type="tel"]:-ms-input-placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #025091;
      font-family: 'ProximaNova-LightIt'; }
    .ask_experts_new .mktoForm input[type="text"]::-ms-input-placeholder, .ask_experts_new .mktoForm input[type="email"]::-ms-input-placeholder, .ask_experts_new .mktoForm input[type="tel"]::-ms-input-placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #025091;
      font-family: 'ProximaNova-LightIt'; }
    .ask_experts_new .mktoForm input[type="text"]::placeholder, .ask_experts_new .mktoForm input[type="email"]::placeholder, .ask_experts_new .mktoForm input[type="tel"]::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #025091;
      font-family: 'ProximaNova-LightIt'; }
    .ask_experts_new .mktoForm input[type="text"]::-ms-input-placeholder, .ask_experts_new .mktoForm input[type="email"]::-ms-input-placeholder, .ask_experts_new .mktoForm input[type="tel"]::-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #025091;
      font-family: 'ProximaNova-LightIt'; }
    .ask_experts_new .mktoForm input[type="text"]::-ms-input-placeholder, .ask_experts_new .mktoForm input[type="email"]::-ms-input-placeholder, .ask_experts_new .mktoForm input[type="tel"]::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #025091;
      font-family: 'ProximaNova-LightIt'; }

/*
 *  BS4 MQ Compatible
 *
 *  @media (min-width: 576px) {  }
 *  @media (min-width: 768px) {  }
 *  @media (min-width: 992px) {  }
 *  @media (min-width: 1200px) {  }
 *
*/
.title {
  font-family: 'ProximaNova-Semibold';
  letter-spacing: -.75px; }
  .title--l {
    font-size: 1.45rem;
    line-height: 1.45rem; }
    @media (min-width: 576px) {
      .title--l {
        font-size: 2rem;
        line-height: 2rem; } }
    @media (min-width: 768px) {
      .title--l {
        font-size: 2.45rem;
        line-height: 2.5rem; } }
  .title--xl {
    font-size: 1.85rem;
    line-height: 1.85rem;
    margin-bottom: .5rem;
    letter-spacing: -1px; }
    @media (min-width: 576px) {
      .title--xl {
        font-size: 2.35rem;
        line-height: 2.35rem; } }
    @media (min-width: 768px) {
      .title--xl {
        font-size: 2.9rem;
        line-height: 3.05rem; } }
    @media (min-width: 992px) {
      .title--xl {
        font-size: 3rem;
        letter-spacing: -2px; } }
    .title--xl span {
      font-family: 'ProximaNova-Thin';
      font-size: 1.45rem;
      display: block;
      letter-spacing: normal; }
      @media (min-width: 768px) {
        .title--xl span {
          font-size: 2rem; } }
      @media (min-width: 992px) {
        .title--xl span {
          font-size: 2.3rem;
          line-height: 2.75rem; } }

.subtitle {
  font-family: 'ProximaNova-Thin';
  padding: 10px 0; }
  @media (min-width: 576px) {
    .subtitle {
      font-size: 1.55rem;
      line-height: 1.55rem; } }
