@charset "UTF-8";
/* ==========================================================================
   VoiceGuide site stylesheet
   --------------------------------------------------------------------------
   Replaces the former uikit.css + mediaquery.css + style16.css +
   components/{slideshow,dotnav,small-icon}.css + kt.css stack (~450 KB).
   Only the rules that the site's markup actually used were carried over;
   the rendered layout is unchanged.
   ========================================================================== */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
    /* Brand */
    --c-accent: #0090cf;        /* links-on-hover, dropdown underline, to-top */
    --c-orange: #f68933;        /* page-title band, slide panel */
    --c-green: #2dae5c;         /* buttons, "Contact Us" nav item, green bands */
    --c-green-dark: #0e9f6e;    /* ...and their hover */

    /* Text */
    --c-text: #212020;
    --c-heading: #393939;
    --c-link: #0077dd;
    --c-link-hover: #005599;
    --c-muted: #939598;

    /* Surfaces */
    --c-bg: #fff;
    --c-dark: #181818;          /* navbar hover */
    --c-offcanvas: #333;
    --c-offcanvas-sub: #272727;
    --c-offcanvas-text: #b3b3b3;
    --c-footer: #3a404c;
    --c-tile: #f8f8f8;
    --c-rule: #ddd;
    --c-hairline: #fffffe;      /* near-white divider used throughout */

    /* Type */
    --font-body: "Open Sans", "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-display: Montserrat, "Helvetica Neue", Arial, Helvetica, sans-serif;

    /* Layout */
    --container-max: 980px;
    --container-pad: 25px;
    --gutter: 25px;
}

/* The former build widened the container and gutters on very wide screens. */
@media (min-width: 1220px) {
    :root {
        --container-max: 1150px;
        --container-pad: 35px;
        --gutter: 35px;
    }
}

/* ==========================================================================
   2. Fonts
   ========================================================================== */

/* Self-hosted fallback that sits behind the Google-hosted Open Sans. */
@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proximanova-reg-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: FontAwesome;
    src: url("../fonts/fontawesome-webfont.woff2") format("woff2"),
         url("../fonts/fontawesome-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* ==========================================================================
   3. Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/*
 * A handful of things predate border-box and were measured the old way, where
 * `width` sizes the content and padding/borders sit outside it. Switching them
 * would resize them, so they keep the old model.
 *
 *   tables      - layout tables with hard-coded `width` attributes, and the
 *                 1px of padding the browser puts on every cell
 *   .slide-panel/.price-badge - percentage widths that sit inside their padding
 *   .icon-wrap  - a fixed box that its border sits outside of
 */
table,
th,
td,
hr,
.slide-panel,
.price-badge,
.icon-wrap,
.icon-wrap > .icon,
[class*="list--"] > li {
    box-sizing: content-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: var(--c-bg);
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: var(--c-text);
}

a {
    color: var(--c-link);
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: var(--c-link-hover);
    text-decoration: underline;
}

b,
strong {
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}

svg:not(:root) {
    overflow: hidden;
}

iframe {
    border: 0;
}

p,
ul,
ol {
    margin: 0 0 15px;
}

* + p,
* + ul,
* + ol {
    margin-top: 15px;
}

ul,
ol {
    padding-left: 30px;
}

ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--c-heading);
    text-transform: none;
}

* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
    margin-top: 25px;
}

h1 { font-size: 28px; line-height: 42px; }
h2 { font-size: 24px; line-height: 32px; }
h3 { font-size: 22px; line-height: 24px; }
h4 { font-size: 18px; line-height: 22px; }
h5 { font-size: 15px; line-height: 20px; }
h6 { font-size: 14px; line-height: 20px; }

hr {
    height: 0;
    margin: 15px 0;
    border: 0;
    border-top: 1px solid var(--c-rule);
}

blockquote p {
    position: relative;
    top: -1px;
}

::selection {
    background: #39f;
    color: #fff;
    text-shadow: none;
}

[hidden] {
    display: none;
}

/* ==========================================================================
   4. Layout: container, grid, column widths
   ========================================================================== */

/*
 * `flow-root` replaces the old ::before/::after clearfix: it contains floated
 * children and stops child margins collapsing through the container, which the
 * page-title band and several content sections rely on for their spacing.
 */
.container {
    display: flow-root;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

/*
 * Grid. Columns are sized as a plain percentage of the row; the row is pulled
 * one gutter to the left and every column carries a matching left pad, so a
 * full row of columns lines up flush with the container edges.
 * `row-gap` replaces the old grid.js, which used to tag wrapped columns with a
 * class just to give them a top margin.
 */
.grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 calc(var(--gutter) * -1);
    padding: 0;
    list-style: none;
}

.grid > * {
    flex: none;
    width: 100%;
    margin: 0;
    padding-left: var(--gutter);
}

.grid > * > :last-child {
    margin-bottom: 0;
}

/* Opt-in vertical gutter between wrapped rows. */
.grid--gap {
    row-gap: var(--gutter);
}

.grid + .grid {
    margin-top: var(--gutter);
}

/* Hairline rules between columns. */
.grid--divider:not(:empty) {
    margin-inline: -5px;
}

.grid--divider > * {
    padding-inline: 5px;
}

/*
 * Rules between columns. A column sized by a breakpoint-scoped width gets a
 * hairline; one sized by a plain width gets the heavier brand divider. Both
 * only apply once the columns sit side by side.
 */
@media (min-width: 768px) and (max-width: 959px) {
    .grid--divider > [class*="w-md-"]:not(.w-md-1-1):nth-child(n + 2) {
        border-left: 1px solid #fff;
    }
}

@media (min-width: 960px) and (max-width: 1023px) {
    .grid--divider > [class*="w-lg-"]:not(.w-lg-1-1):nth-child(n + 2) {
        border-left: 1px solid #fff;
    }
}

@media (min-width: 768px) {
    .grid--divider > :is(.w-1-2, .w-1-3, .w-2-3, .w-1-4, .w-3-4, .w-1-6,
                         .w-1-10, .w-2-10, .w-3-10, .w-4-10, .w-6-10,
                         .w-7-10, .w-8-10, .w-9-10):not(.w-1-1):nth-child(n + 2) {
        border-left: 2px solid var(--c-hairline);
    }
}

@media (min-width: 1220px) {
    .grid--divider:not(:empty) {
        margin-inline: calc(var(--gutter) * -1);
    }

    .grid--divider > * {
        padding-inline: var(--gutter);
    }
}

/* A standalone <hr class="grid--divider"> used as a section rule. */
.grid--divider:empty {
    margin-block: var(--gutter);
    border-top: 2px solid var(--c-hairline);
}

/*
 * Column widths. `w-*` applies at every size; the breakpoint-scoped variants
 * override it within their own range only.
 *
 * NOTE: `w-lg-*` deliberately stops at 1023px. That was the behaviour of the
 * site's customised UIkit build -- above 1023px the unprefixed `w-*` width
 * takes over again -- and the page layouts depend on it.
 */
.w-1-1  { width: 100%; }
.w-1-2  { width: 50%; }
.w-1-3  { width: 33.333%; }
.w-2-3  { width: 66.666%; }
.w-1-4  { width: 25%; }
.w-3-4  { width: 75%; }
.w-1-6  { width: 16.666%; }
.w-1-10 { width: 10%; }
.w-2-10 { width: 20%; }
.w-3-10 { width: 30%; }
.w-4-10 { width: 40%; }
.w-6-10 { width: 60%; }
.w-7-10 { width: 70%; }
.w-8-10 { width: 80%; }
.w-9-10 { width: 90%; }

@media (max-width: 767px) {
    .w-sm-1-1  { width: 100%; }
    .w-sm-3-10 { width: 30%; }
    .w-sm-7-10 { width: 70%; }
}

@media (min-width: 768px) and (max-width: 959px) {
    .w-md-1-1  { width: 100%; }
    .w-md-1-2  { width: 50%; }
    .w-md-1-3  { width: 33.333%; }
    .w-md-2-3  { width: 66.666%; }
    .w-md-1-4  { width: 25%; }
    .w-md-3-4  { width: 75%; }
    .w-md-1-6  { width: 16.666%; }
    .w-md-3-10 { width: 30%; }
    .w-md-6-10 { width: 60%; }
    .w-md-7-10 { width: 70%; }
    .w-md-9-10 { width: 90%; }
}

@media (min-width: 960px) and (max-width: 1023px) {
    .w-lg-1-3  { width: 33.333%; }
    .w-lg-2-10 { width: 20%; }
    .w-lg-4-10 { width: 40%; }
    .w-lg-6-10 { width: 60%; }
    .w-lg-8-10 { width: 80%; }
}

/* ==========================================================================
   5. Site header
   ========================================================================== */

.site-header {
    background: #fff;
}

.site-header__bar {
    border-bottom: 2px solid #222;
}

/* The main nav runs to the edge of the header; the order pages' cut-down nav
   keeps the normal container padding. */
.site-header__bar .container--flush-end {
    padding-right: 0;
}

/*
 * Opt-in sticky header (used on the order pages). site.js adds `is-stuck`
 * once the page has scrolled 300px past the bar, on wide viewports only.
 */
.site-header__bar--sticky {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    z-index: 9999;
}

.site-header__bar--sticky.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    animation: fade-top 0.3s ease-in-out;
}

#logo {
    float: left;
    width: 240px;
    height: 45px;
    margin: 20px auto 6px;
}

/* --- Desktop nav ------------------------------------------------------- */

.navbar {
    display: flow-root;
}

/* Shrink-wrapped block that pins the nav (and the mobile toggle) to the right. */
.navbar__inner {
    float: right;
}

.navbar__nav {
    float: right;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar__nav > li {
    position: relative;
    float: left;
    border-right: 1px solid var(--c-hairline);
}

.navbar__nav > li:last-child {
    border-right: none;
}

.navbar__nav > li > a {
    display: block;
    height: 72px;
    padding: 18px 12px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 32px;
    color: #080808;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar__nav > li:hover > a,
.navbar__nav > li > a:focus,
.navbar__nav > li.is-open > a {
    background-color: var(--c-dark);
    color: #fff;
    outline: none;
}

.navbar__nav > li > a[href="#"] {
    cursor: text;
}

/* The green "Contact Us" item. */
#contact_us_menu_li > a,
#fly_contact_us_menu {
    background-color: var(--c-green);
    color: #fff;
}

#contact_us_menu_li > a:hover,
#fly_contact_us_menu:hover {
    background-color: var(--c-green-dark);
}

@media (min-width: 768px) and (max-width: 959px) {
    .navbar {
        border-top: 1px solid var(--c-hairline);
    }

    .navbar__inner {
        float: none;
        margin-left: 3%;
    }
}

/* --- Dropdowns --------------------------------------------------------- */

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1020;
    width: 200px;
    padding: 0 15px;
    background: #f5f5f5;
    border: 1px solid #d7d7d7;
    border-top: none;
    box-shadow: 1px 1px 3px 0 rgb(0 0 0 / 10%);
    color: #444;
    font-size: 14px;
    vertical-align: top;
}

/* Opened by site.js on hover / focus / tap. */
.has-sub.is-open > .dropdown {
    display: block;
    transform-origin: 0 0;
    animation: slide-top-fixed 0.2s ease-in-out;
}

/* Pushed to the right edge when the panel would overflow the viewport. */
.dropdown.is-flipped {
    left: auto;
    right: 0;
}

.dropdown .nav-list {
    margin: 0 -15px;
}

.nav-list,
.nav-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li > a {
    display: block;
    text-decoration: none;
}

.nav-list > li > a {
    padding: 10px 15px;
    border-bottom: 1px solid var(--c-hairline);
    color: #444;
}

.nav-list > li > a:hover,
.nav-list > li > a:focus {
    background: #00a8e6;
    color: #fff;
    outline: none;
}

.nav-list > li:last-child > a {
    margin: 0 -1px -1px;
    padding: 10px 16px;
    border-bottom: 2px solid var(--c-accent);
}

/* --- Mega menu --------------------------------------------------------- */

.megamenu {
    /* Offset from the element the panel is justified against (see site.js). */
    --justify-nudge: 17px;

    border-bottom: 2px solid var(--c-accent);
}

.megamenu > .grid {
    padding: 44px 8px 15px;
}

.megamenu .icon-wrap {
    width: 58px;
    height: 45px;
    margin-bottom: 28px;
}

.megamenu .icon-wrap.is-left {
    margin-right: 14px;
    border-right: 1px solid var(--c-rule);
}

.megamenu .icon-wrap.is-circle > .icon {
    width: 45px;
    height: 45px;
    margin-top: 0;
    background: #aeaeae;
    border: none;
    color: #fff;
    font-size: 22px;
    line-height: 46px;
}

.megamenu li a {
    padding-top: 10px;
    padding-bottom: 10px;
}

.megamenu ul li ul li a {
    color: #444;
    text-decoration: none;
    border-bottom: none;
}

.megamenu ul li ul li a:hover,
.megamenu ul li ul li a:hover .icon,
.megamenu ul li ul li a:hover h5 {
    color: var(--c-accent);
    text-decoration: none;
}

.megamenu ul li ul li a:hover .icon-wrap.is-circle > .icon {
    background: var(--c-accent);
}

.megamenu [class*="list--"] > li:hover::before {
    color: var(--c-accent);
}

.megamenu ul li ul.list li .icon {
    float: left;
    margin: 5px 10px 0 0;
    color: #9b9da1;
}

/* Last link in the icon column has to clear the icon it sits beside. */
.megamenu .list:not(.list--arrow) > li:last-child > a {
    float: left;
    width: 100%;
    margin: 0 -1px -1px;
    padding: 0 16px 10px 0;
    border-bottom: none;
}

.megamenu ul li ul li h5 {
    margin-top: 0;
    margin-bottom: -16px;
}

/* --- Mobile: hamburger + off-canvas panel ------------------------------ */

.navbar__toggle {
    /* A <button> doesn't inherit type the way the rest of the nav does. */
    font: inherit;
    font-size: 22px;
    display: block;
    float: left;
    position: relative;
    top: 15px;
    height: 40px;
    margin-right: 15px;
    padding: 7px 14px 40px;
    background: var(--c-dark);
    border: 0;
    color: var(--c-offcanvas-text);
    text-decoration: none;
    cursor: pointer;
}

.navbar__toggle:hover,
.navbar__toggle:focus {
    color: #fff;
    text-decoration: none;
    outline: none;
}

.navbar__toggle::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.navbar__toggle::after {
    content: "\f0c9";           /* bars */
    font-family: FontAwesome;
    vertical-align: middle;
}

.offcanvas {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgb(0 0 0 / 10%);
    touch-action: none;
}

.offcanvas.is-open {
    display: block;
}

/* Slides in from the right, on the same side as the toggle that opens it. */
.offcanvas__bar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1001;
    width: 270px;
    max-width: 100%;
    background: var(--c-offcanvas);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.offcanvas.is-open .offcanvas__bar {
    transform: translateX(0);
}

.offcanvas__nav,
.offcanvas__nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas__nav li > a {
    display: block;
    text-decoration: none;
}

.offcanvas__nav > li > a {
    padding: 12px 20px;
    border-bottom: 1px solid var(--c-offcanvas-sub);
    color: var(--c-offcanvas-text);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.offcanvas__nav > li > a:hover,
.offcanvas__nav > li > a:focus,
.offcanvas__nav > .is-open > a {
    background: #404040;
    color: #fff;
    outline: none;
}

/* Disclosure arrow on collapsible items. */
.offcanvas__nav > .has-sub > a::after {
    content: "\f104";           /* chevron-left */
    float: right;
    width: 20px;
    margin-right: -5px;
    font-family: FontAwesome;
    text-align: center;
}

.offcanvas__nav > .has-sub.is-open > a::after {
    content: "\f107";           /* chevron-down */
}

.offcanvas__nav .subnav {
    display: none;
    padding: 0;
    background: var(--c-offcanvas-sub);
}

.offcanvas__nav .has-sub.is-open > .subnav {
    display: block;
}

.offcanvas__nav .subnav > li > a {
    padding: 9px 0 10px 30px;
    border-bottom: 1px solid var(--c-offcanvas-sub);
    color: var(--c-offcanvas-text);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
}

.offcanvas__nav .subnav > li > a:hover {
    background: #00a8e6;
    color: #fff;
}

/* ==========================================================================
   6. Page title band
   ========================================================================== */

.page-title {
    display: block;
    width: 100%;
    height: 120px;
    margin-bottom: 30px;
    background-color: var(--c-orange);
    vertical-align: middle;
}

.page-title h1 {
    margin-top: 35px;
    color: #fff;
    font-size: 32px;
    line-height: 42px;
}

/* ==========================================================================
   7. Components
   ========================================================================== */

/* --- Lists ------------------------------------------------------------- */

.list {
    padding: 0;
    list-style: none;
}

.list > li {
    display: flow-root;
    font-weight: 500;
}

.list > li > :last-child {
    margin-bottom: 0;
}

.list ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

/* Arrow-bulleted list. */
[class*="list--"] > li {
    padding-left: 20px;
}

[class*="list--"] > li:nth-child(n + 2) {
    margin-top: 3px;
    padding-top: 3px;
}

[class*="list--"] > li::before {
    position: absolute;
    margin-left: -21px;
    color: #9b9da1;
    font-family: FontAwesome;
    font-size: 15px;
}

.list--arrow > li::before {
    content: "\f138";           /* chevron-circle-right */
}

.list--arrow > li {
    height: 40px;
    font-size: 16px;
}

/* --- Panels ------------------------------------------------------------ */

.panel {
    display: flow-root;
    position: relative;
}

.panel,
.panel:hover {
    text-decoration: none;
}

.panel > :not(.panel__title):last-child {
    margin-bottom: 0;
}

.panel__title {
    margin: 0;
    padding-bottom: 10px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    color: #444;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: none;
}

.panel--header .panel__title {
    border-bottom-color: var(--c-rule);
}

.panel__title .icon {
    margin-right: 7px;
}

/* --- Tiles ------------------------------------------------------------- */

.tile {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    background-color: var(--c-tile);
    border: 1px solid #ccc;
}

/* --- Icons ------------------------------------------------------------- */

.icon {
    display: inline-block;
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon:hover,
.icon:focus {
    text-decoration: none;
}

.icon-envelope-o::before        { content: "\f003"; }
.icon-user::before              { content: "\f007"; }
.icon-th-list::before           { content: "\f00b"; }
.icon-cog::before               { content: "\f013"; }
.icon-download::before          { content: "\f019"; }
.icon-book::before              { content: "\f02d"; }
.icon-chevron-up::before        { content: "\f077"; }
.icon-phone-square::before      { content: "\f098"; }
.icon-comments-o::before        { content: "\f0e6"; }
.icon-bolt::before              { content: "\f0e7"; }
.icon-lightbulb-o::before       { content: "\f0eb"; }

/* Circle-framed icon, optionally floated beside a heading. */
.icon-wrap {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.icon-wrap.is-left {
    float: left;
    margin-right: 25px;
}

.icon-wrap.is-circle > .icon {
    width: 70px;
    height: 70px;
    background: #f3f3f3;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    font-size: 34px;
    line-height: 70px;
    text-align: center;
}

.icon-wrap + h1,
.icon-wrap + h3,
.icon-wrap + h4,
.icon-wrap + h5 {
    margin-top: -5px;
}

.icon-wrap + p {
    margin-top: 0;
}

.kt-icon-mediumlrg {
    display: inline-block;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    margin-left: -26px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    inset: 50% auto auto 50%;
}

.svg-icon {
    stroke: #faae3a;
    fill: none;
}

/* --- Buttons ----------------------------------------------------------- */

.btn {
    display: inline-block;
    margin: 0;
    padding: 0 12px;
    background: #eee;
    border: none;
    color: #444;
    font: inherit;
    font-size: 14px;
    line-height: 30px;
    min-height: 30px;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
}

.btn:not(:disabled) {
    cursor: pointer;
}

.btn:hover,
.btn:focus {
    background-color: #f5f5f5;
    color: #444;
    text-decoration: none;
    outline: none;
}

.btn:active {
    background-color: var(--c-rule);
}

.btn:disabled {
    background-color: #f5f5f5;
    color: #999;
}

.btn--lg {
    min-height: 40px;
    padding: 5px 36px 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
}

.btn--white,
.btn--white:hover {
    margin-bottom: 3px;
    color: #444;
}

.btn--white {
    background: #fff;
}

.btn--white:hover {
    background: rgb(255 255 255 / 80%);
}

/* Solid call-to-action buttons. */
/*
 * On links, min-width sizes the label rather than the padded box -- that is
 * how these buttons have always measured. Real <button>/<input> elements stay
 * border-box, as the browser makes them.
 */
.btn-outline {
    display: inline-block;
    position: relative;
    box-sizing: content-box;
    min-width: 160px;
    margin: 20px 0 4px;
    padding: 0.5em 2em;
    background-color: var(--c-green);
    border: 2px solid var(--c-green);
    color: #fff;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.003em;
    text-align: center;
    text-shadow: none;
    vertical-align: middle;
    outline: 0;
    transition: color 0.3s, background 0.3s;
}

button.btn-outline,
input.btn-outline {
    box-sizing: border-box;
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--c-green-dark);
    border-color: var(--c-green-dark);
    color: #fff;
    text-decoration: none;
}

/* --- Forms ------------------------------------------------------------- */

.form fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

.form > :last-child {
    margin-bottom: 0;
}

.form input,
.form select,
.form textarea {
    margin: 0;
    font: inherit;
    color: inherit;
    vertical-align: middle;
}

.form select,
.form textarea,
.form input:not([type]),
.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="url"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="number"],
.form input[type="date"],
.form input[type="datetime"],
.form input[type="datetime-local"],
.form input[type="month"],
.form input[type="time"],
.form input[type="week"],
.form input[type="color"] {
    height: 35px;
    max-width: 100%;
    padding: 4px 6px;
    background: #fff;
    border: 1px solid #ccc;
    color: #444;
    transition: all linear 0.2s;
}

/* Text-entry controls only -- <select> keeps its native arrow. */
.form textarea,
.form input:not([type]),
.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="url"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="number"],
.form input[type="datetime"] {
    -webkit-appearance: none;
    appearance: none;
}

.form textarea,
.form select[multiple],
.form select[size] {
    height: auto;
    overflow: auto;
    vertical-align: top;
}

.form select {
    text-transform: none;
}

.form select::-ms-expand {
    display: none;
}

.form input[type="checkbox"],
.form input[type="radio"] {
    padding: 0;
    vertical-align: middle;
}

.form input[type="checkbox"]:not(:disabled),
.form input[type="radio"]:not(:disabled) {
    cursor: pointer;
}

.form select:focus,
.form textarea:focus,
.form input:not([type="radio"]):not([type="checkbox"]):focus {
    background: #f5fbfe;
    border-color: #99baca;
    color: #444;
    outline: 0;
}

.form select:disabled,
.form textarea:disabled,
.form input:disabled {
    background-color: #f5f5f5;
    border-color: var(--c-rule);
    color: #999;
}

.form ::placeholder {
    color: #999;
    opacity: 1;
}

.form legend {
    width: 100%;
    padding: 0 0 15px;
    border: 0;
    font-size: 18px;
    line-height: 30px;
}

.form legend::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--c-rule);
}

.form__row {
    display: flow-root;
}

.form__row + .form__row {
    margin-top: 15px;
}

.form__controls > :first-child {
    margin-top: 0;
}

.form__controls > :last-child {
    margin-bottom: 0;
}

.contact-bold {
    font-weight: 500;
}

/* --- Slideshow --------------------------------------------------------- */

#slideshow-container {
    height: 420px;
    background: #efefef;
}

.slideshow {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 420px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    touch-action: pan-y;
}

/*
 * Slides are taller than the frame and clipped by it -- the old slideshow.js
 * stamped this height (its `height: 480` default) onto every slide inline.
 */
.slideshow > li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 480px;
    opacity: 0;
}

.slideshow > li.is-active {
    z-index: 10;
    opacity: 1;
}

/*
 * Outgoing slide: sits on top and scales up as it fades away, revealing the
 * incoming one, which is already fully opaque underneath.
 */
.slideshow > li.is-leaving {
    z-index: 11;
    opacity: 1;
    animation: fade-scale-15 0.5s ease-in-out reverse;
}

.slideshow > li > img {
    visibility: hidden;
}

/* Text panel that sits over a slide. */
.overlay {
    position: absolute;
    inset: 0;
    padding: 10px;
    color: #fff;
}

.overlay > :last-child {
    margin-bottom: 0;
}

.overlay h1,
.overlay h2,
.overlay h3,
.overlay h4,
.overlay h5,
.overlay h6 {
    color: inherit;
}

.overlay a:not([class]) {
    color: inherit;
    text-decoration: underline;
}

.overlay--bottom {
    top: auto;
}

/* Dimmed on the slides waiting in the wings; full strength on the live one. */
.overlay--fade {
    opacity: 0.7;
    transition: opacity 0.8s ease-out;
}

.slideshow > .is-active > .overlay--fade {
    opacity: 1;
}

.slide-panel {
    position: relative;
    bottom: -20px;
    padding: 34px 36px 38px;
    background: var(--c-orange);
}

.slide-panel h1 {
    font-size: 32px;
}

/* The slides carry a rule and a strapline that the design hides. */
.slide-panel hr,
.slide-panel p {
    display: none;
}

.slide-panel .list li {
    font-size: 16px;
    /* Semibold, so the bullets carry a little more weight against the
       orange. Needs Open Sans 600 in the font request - a plain 500 has
       nothing to match and silently renders as regular. */
    font-weight: 600;
}

/* Spacer that pads out the bottom of the panel. */
.slide-panel::after {
    content: "";
    display: block;
    position: relative;
    top: -217px;
    left: 109.4%;
    width: 480px;
    height: 256px;
    margin-bottom: -200px;
}

/* --- Slideshow dots ---------------------------------------------------- */

.dots {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: flex-end;
    margin: -15px 0 0 -15px;
    padding: 0;
    list-style: none;
}

.dots > * {
    flex: none;
    margin-top: 15px;
    padding-left: 15px;
}

.dots > * > * {
    display: block;
    width: 20px;
    height: 20px;
    background: rgb(50 50 50 / 10%);
    border-radius: 50%;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.dots > * > :hover,
.dots > * > :focus {
    background: rgb(50 50 50 / 40%);
    outline: none;
}

.dots > .is-active > * {
    background: rgb(50 50 50 / 40%);
}

.dots > * > :active {
    background: rgb(50 50 50 / 60%);
}

.dots--contrast > * > * {
    background: rgb(255 255 255 / 40%);
}

.dots--contrast > * > :hover,
.dots--contrast > * > :focus {
    background: rgb(255 255 255 / 70%);
}

.dots--contrast > * > :active,
.dots--contrast > .is-active > * {
    background: rgb(255 255 255 / 90%);
}

#slideshow-container .dots {
    top: -40px;
    right: 4.8%;
}

#slideshow-container .dots > * {
    padding-left: 7px;
}

#slideshow-container .dots > * > * {
    width: 40px;
    height: 8px;
    background: rgb(255 255 255 / 70%);
    border-radius: 0;
}

#slideshow-container .dots > * > :hover,
#slideshow-container .dots > * > :focus,
#slideshow-container .dots > .is-active > * {
    background: rgb(80 80 80 / 70%);
}

/* --- Home page call-to-action strip ------------------------------------ */

#get-started-wrap {
    height: 84px;
    background: var(--c-green);
    color: #fff;
    transition: background 0.3s;
}

/* The whole strip is one click target, so both halves deepen together. */
#get-started-wrap:hover,
#get-started-wrap:hover .price-badge {
    background: var(--c-green-dark);
}

#get-started-wrap a {
    position: relative;
    top: 30px;
    height: 100%;
    margin-left: 23px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

#get-started-wrap a:hover {
    text-decoration: none;
}

#get-started-wrap a .icon {
    margin-left: 8px;
    font-size: 18px;
}

.price-badge {
    float: left;
    padding: 15px 39px 2px 36px;
    background: var(--c-green);
    transition: background 0.3s;
}

.price-badge h1 {
    margin-bottom: 0;
    color: #fff;
}

/* --- Video ------------------------------------------------------------- */

.videowrapper {
    position: relative;
    max-width: 1280px;
    max-height: 720px;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Click-to-load YouTube facade. */
.youtube {
    position: relative;
    margin-bottom: 30px;
    background-color: #000;
    overflow: hidden;
    cursor: pointer;
}

.youtube img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.7;
    cursor: pointer;
}

.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgb(0 0 0 / 60%);
    opacity: 0.8;
    transform: translate3d(-50%, -50%, 0);
    cursor: pointer;
}

.youtube .play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #fff;
    transform: translate3d(-50%, -50%, 0);
}

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

.table-apps td {
    padding: 0 30px 0 20px;
}

/* ==========================================================================
   8. Footer
   ========================================================================== */

footer {
    padding: 60px 0 0;
    background: var(--c-footer);
}

footer h5 {
    color: #fff;
    text-decoration: none;
}

footer .list li a {
    color: #939292;
}

footer .list li a:hover {
    color: var(--c-accent);
    text-decoration: none;
}

footer hr {
    margin: 28px 0 32px;
    border: 1px solid #e2e2e2;
}

.copyright {
    color: var(--c-muted);
    font-size: 11px;
}

#id-div-logo-footer,
#id-img-logo-footer {
    width: 100%;
    height: 20px;
    margin-bottom: 5px;
}

/* Back-to-top button, revealed by site.js once the page is scrolled. */
.to-top {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: var(--c-accent);
    color: #fff;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
}

.to-top:hover {
    color: #fff;
}

.to-top.is-visible {
    display: block;
}

/* ==========================================================================
   9. Utilities
   ========================================================================== */

.section-pad {
    padding-top: 20px;
    padding-bottom: 30px;
}

.narrow {
    width: 90%;
    margin: 0 auto;
}

/* Block formatting context, so text sits beside a float instead of under it. */
.flow-root {
    display: flow-root;
}

.text-lg {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
}

.text-center {
    text-align: center;
}

.flex-end {
    justify-content: flex-end;
}

.mt    { margin-top: 15px; }
.mt-sm { margin-top: 5px; }
.mb-sm { margin-bottom: 5px; }
.mb-lg { margin-bottom: 50px; }
.mr    { margin-right: 15px; }

/* Visibility helpers. Ranges match the column-width breakpoints. */
@media (max-width: 767px) {
    .hide-sm { display: none; }
}

@media (min-width: 768px) and (max-width: 959px) {
    .hide-md { display: none; }
}

@media (min-width: 960px) {
    .hide-lg { display: none; }
}

@media (min-width: 768px) {
    .show-sm { display: none; }
}

/* ==========================================================================
   10. Narrow-screen adjustments
   ========================================================================== */

@media (min-width: 768px) and (max-width: 959px) {
    #slideshow-container,
    .slideshow {
        height: 400px;
    }

    #slideshow-container .dots {
        top: -40px;
        right: 3.6%;
    }

    .slide-panel {
        width: 88.1%;
        left: -6%;
        padding: 34px 36px 52px;
    }

    .slide-panel .list li {
        font-size: 14px;
    }

    .slide-panel::after {
        top: -150px;
        left: 112.5%;
        width: 400px;
        height: 213px;
        margin-bottom: -158px;
    }
}

@media (min-width: 960px) and (max-width: 1023px) {
    #slideshow-container,
    .slideshow {
        height: 420px;
    }

    #get-started-wrap a {
        margin-left: 20px;
    }
}

@media (min-width: 768px) and (max-width: 959px) {
    #get-started-wrap a {
        margin-left: 68px;
    }

    .price-badge {
        width: 28%;
        padding: 7px 39px 5px 120px;
    }
}

@media (max-width: 767px) {
    /*
     * Phone slideshow: a short band with the wording centred in it.
     * The slide fills the frame and the caption is centred inside, rather
     * than each slide being pinned by its own hand-tuned bottom offset --
     * those left every slide at a different height, and the longest one
     * pushed its first line up out of the band entirely.
     */
    #slideshow-container,
    .slideshow {
        height: 200px;
    }

    .slideshow > li {
        height: 100%;
    }

    .slideshow > li > .overlay {
        top: 0;
        display: flex;
        align-items: center;
        padding: 0;
    }

    .slideshow > li > .overlay > .container {
        width: 100%;
    }

    /* Sits the same proportion above the band's foot as on the wide layout,
       now that the band is shorter. */
    #slideshow-container .dots {
        top: -30px;
        right: 4.8%;
    }

    .slideshow .w-1-2,
    .slideshow .w-4-10,
    .slideshow .w-7-10,
    .slideshow .w-8-10 {
        width: 100%;
    }

    .slide-panel {
        position: static;
        width: 100%;
        padding: 10px 0;
        background: transparent;
        text-align: center;
    }

    .slide-panel h1 {
        margin: 0;
        font-size: 32px;
        line-height: 40px;
    }

    /* Decorative spacer that only makes sense on the wide layout. */
    .slide-panel::after {
        display: none;
    }

    .slide-panel .list {
        display: none;
    }

    .spacer {
        margin-bottom: 34px;
    }

    /* Columns stack, so the rules between them run horizontally... */
    .grid--divider > .w-sm-1-1:not(:last-child) {
        border-bottom: 2px solid var(--c-hairline);
    }

    #get-started-wrap a {
        margin-left: 25px;
    }

    .price-badge {
        width: 32.3%;
        padding: 7px 20px 5px 65px;
    }
}

@media (max-width: 479px) {
    #slideshow-container .dots {
        right: 8%;
    }

    #get-started-wrap {
        height: 170px;
    }

    #get-started-wrap a {
        margin-left: 27px;
    }

    .price-badge {
        width: 72.2%;
        padding: 7px 0 5px 75px;
    }

    .slide-panel h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

/* ==========================================================================
   11. Keyframes
   ========================================================================== */

/* Dropdown reveal. */
@keyframes slide-top-fixed {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Sticky header drop-in. */
@keyframes fade-top {
    from { opacity: 0; transform: translateY(-100%); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Slideshow transition -- played in reverse, so the slide scales *up* out. */
@keyframes fade-scale-15 {
    from { opacity: 0; transform: scale(1.5); }
    to   { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   12. Print
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h3 {
        page-break-after: avoid;
    }

    @page {
        margin: 0.5cm;
    }
}
