/* Global settings */
:root {
    --realwhite: #fff;
    --ezblack: #1e1e1e;
    --ezwhite: #fcfcfc;
    --ezlight: #f1f1f1;
    --ezmedium: #cacaca;
    --ezorange: #ff8109;
    --ezdarkblue: #0b1f52;
    --ezmediumblue: rgb(30, 58, 138);
    --ezlightblue: rgb(8, 136, 208);
    --ezpurple: #6E00DC;
    --ezblue: #0020BA;
    --ezgreen: #0FBB00;
    --ezpink: #FF04A5;
    --ezorange-bright: #FE4B09;
}



body {
    color: var(--ezblack);
    font-size: 18px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.title {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

.marker {
    font-family: "Permanent Marker", serif;
    font-weight: 400;
}

    .marker span {
        color: #FF8109;
    }


/*! tailwindcss v2.0.3 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

:root {
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
    margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
    font-family: system-ui, -apple-system;
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
    height: 0; /* 1 */
    color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
    font-weight: bolder;
}

/**
Add the correct font size in all browsers.
*/

small {
    font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
    text-indent: 0; /* 1 */
    border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select {
    /* 1 */
    text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'] {
    -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
    padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
    vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
    display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0;
}

button {
    background-color: transparent;
    background-image: none;
}

    /**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

    button:focus {
        outline: 1px dotted;
        outline: 5px auto -webkit-focus-ring-color;
    }

fieldset {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    line-height: 1.5;
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
    font-family: inherit;
    line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
    box-sizing: border-box; /* 1 */
    border-width: 0; /* 2 */
    border-style: solid; /* 2 */
    border-color: #e5e7eb; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
    border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
    border-style: solid;
}

textarea {
    resize: vertical;
}

    input::-moz-placeholder,
    textarea::-moz-placeholder {
        opacity: 1;
        color: #9ca3af;
    }

    input:-ms-input-placeholder,
    textarea:-ms-input-placeholder {
        opacity: 1;
        color: #9ca3af;
    }

    input::placeholder,
    textarea::placeholder {
        opacity: 1;
        color: #9ca3af;
    }

button {
}

table {
    border-collapse: collapse;
}
/*
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}*/

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
    color: inherit;
    text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
    padding: 0;
    line-height: inherit;
    color: inherit;
}

    input[type='email'] {
        border: 1px solid var(--ezmedium);
    }

    input[type='submit'] {
        border: 1px solid var(--ezorange);
    }

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    /* vertical-align: middle; */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
    max-width: 100%;
    height: auto;
}

.youtubeVideo {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
}

section h3 {
    line-height: 3.75rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-align: center;
}

#hero {
    background-size: cover;
    background-position: right;
    background-repeat: none;
    padding: 100px 0 0;
}



    #hero h1,
    #hero p,
    #hero a {
        position: relative;
        font-family: "Poppins", sans-serif;
    }

    #hero p {
        line-height: 1.25;
        color: var(--ezblue);
        font-weight: 600;
        letter-spacing: .03em;
        text-indent: 10px;
    }

    #hero h1 {
        font-size: 3.25em;
        line-height: 1.25;
    }

@media (max-width: 1280px) {

    #hero h1 {
        font-size: 2.75em;
    }
}

@media (max-width: 1024px) {
    .hero-opacity {
        background-color: #ffffff9c;
    }
}


#featureshero {
    background-size: cover;
    background-position: center;
    background-repeat: none;
    padding: 100px 0 0;
}

    #featureshero h1,
    #featureshero p,
    #featureshero a {
        position: relative;
        font-family: "Poppins", sans-serif;
    }

    #featureshero p {
        line-height: 1.25;
        text-transform: uppercase;
        font-weight: 400;
        text-indent: 10px;
        font-size: .875em;
    }

    #featureshero h1 {
        font-size: 2.5em;
        line-height: 1.25;
        margin-top: 50px;
    }

    #featureshero h4 {
        font-size: 1.25em;
        line-height: 1.25;
        font-weight: 500;
    }

.featuresHero {
    min-height: auto;
}

    .featuresHero h1 {
        font-weight: 300;
        text-align: center;
    }

#benefits {
    background-position: center center;
    background: url('../../../../assets/img/ez-back.svg');
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
}



    #benefits h2 {
        font-weight: 700;
    }

        #benefits h2 span {
            font-weight: 500;
            color: var(--ezblue);
        }

.shadow-header-dark {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.shadow-header-light {
    text-shadow: 0 0 20px rgba(11, 31, 82, 0.25);
}

.shadow-strong {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}



nav {
    display: block;
    background-color: white;
    z-index: 500000;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    backdrop-filter: blur(5px);
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    /*    border: solid 1px #cccccc;
    margin: 15px;*/
    border-radius: 10px;
    background-color: white;
}

.logo-pricing {
    display: flex;
    align-items: center;
}

    .logo-pricing img {
        width: 100%;
        height: 75px;
        padding: 10px 0
    }

.logo-portfolio {
    display: flex;
    align-items: center;
}

    .logo-portfolio img {
        width: 100%;
        height: 75px;
        padding: 10px 0
    }


ul.middle-nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    flex: 1;
}

li.middle-nav {
}

.top-nav-link {
    font-weight: 400;
    padding: 0 15px;
    font-size: .87em;
    font-family: "Poppins", sans-serif;
}

.spacer-nav {
    display: flex;
    align-items: center;
    padding: 0 40px 0 20px;
}

.side-nav {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

    .side-nav a span {
        font-size: 1em;
        font-family: "Poppins", sans-serif;
    }

.right-nav {
    display: flex;
    align-items: center;
}

    .right-nav a {
        display: flex;
        align-items: center;
    }

span.buyNow {
    background-color: #0027E6;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: .875em;
    margin: 0 5px;
}

    span.buyNow:hover {
        background-color: #0020ba;
        color: white !important;
    }


span.bookDemo {
    background-color: #0027E6;
    color: white;
    padding: 8px 50px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: .875em;
    margin: 0 5px;
}

    span.bookDemo:hover {
        background-color: #0020ba;
        color: white !important;
    }

.industry-box {
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
    border-radius: 0.375rem;
    overflow: hidden;
    padding-top: 18rem;
    position: relative;
    position: relative;
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    overflow: hidden;
}

    .industry-box:first-of-type {
        margin: 0 10px;
    }

    .industry-box:nth-of-type(2) {
        margin: 0 10px;
    }

@media (max-width: 639px) {
    .industry-box:first-of-type {
        margin: 0;
    }

    .industry-box:nth-of-type(2) {
        margin: 0;
    }
}

.industry-box > img {
    background-position: center;
    height: 100%;
    margin: 0px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    padding: 0px;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    width: 100%;
    transition: 0.25s;
}

    .industry-box > img:hover {
        transform: scale(1.15);
    }

.industry-box > p {
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
    --tw-bg-opacity: 0.8;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: absolute;
    position: absolute;
    right: 0px;
    left: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    bottom: 0px;
    text-align: center;
    --tw-text-opacity: 1;
    color: var(--ezorange);
}

#tabs button {
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
    --tw-bg-opacity: 0.7;
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
    --tw-border-opacity: 0.5;
    border-bottom-width: 1px;
}

    #tabs button.inactive {
        --tw-bg-opacity: 0.1;
    }

.price-toggler {
    margin-top: 1.5rem !important;
}

.industry-box {
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    --tw-translate-y: -0.25rem;
}

.hover\:industry-box:hover {
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    --tw-translate-y: -0.25rem;
}

.focus\:industry-box:focus {
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    --tw-translate-y: -0.25rem;
}

@media (min-width: 640px) {
    .top-nav-link {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-gray-600 {
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}

.bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}

.bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}

.bg-red-700 {
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
}

.bg-yellow-600 {
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
}

.bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
}

.bg-blue-400 {
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
}

.bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
}

.bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
}

.bg-brand-light {
    --tw-bg-opacity: 1;
    background-color: rgba(8, 136, 208, var(--tw-bg-opacity));
}

.bg-brand-dark {
    --tw-bg-opacity: 1;
    background-color: rgba(11, 31, 82, var(--tw-bg-opacity));
}

.bg-yel-light {
    --tw-bg-opacity: 1;
    background-color: rgba(252, 243, 69, var(--tw-bg-opacity));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-brand-dark {
    --tw-gradient-from: #0b1f52;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(11, 31, 82, 0));
}

.from-yel-light {
    --tw-gradient-from: #fcf345;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 243, 69, 0));
}

.to-brand-light {
    --tw-gradient-to: #0888d0;
}

.to-yel-dark {
    --tw-gradient-to: #e8a109;
}

.bg-opacity-10 {
    --tw-bg-opacity: 0.1;
}

.bg-opacity-80 {
    --tw-bg-opacity: 0.8;
}

.border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}

.border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
}

.border-gray-800 {
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}

.border-yellow-400 {
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
}

.rounded-sm {
    border-radius: 0.125rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-r-none {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.rounded-l-none {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.border {
    border-width: 1px;
}

.border-r-0 {
    border-right-width: 0px;
}

.border-l-0 {
    border-left-width: 0px;
}

.border-r {
    border-right-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-l {
    border-left-width: 1px;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.table {
    display: table;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.content-center {
    align-content: center;
}

.justify-items-center {
    justify-items: center;
}

.justify-items-stretch {
    justify-items: stretch;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-1-row {
    display: flex;
    flex: 1 1 0%;
    flex-flow: row nowrap;
}

    .flex-1-row .material-icons {
        font-size: 40px;
        margin-right: 15px;
    }


.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-black {
    font-weight: 900;
}

.h-5 {
    height: 1.25rem;
}

.h-full {
    height: 100%;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-md {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 2.5rem;
    line-height: 2.5rem;
}

.text-6xl {
    font-size: 2.875rem;
    line-height: 2.5rem;
}

.m-auto {
    margin: auto;
}

.my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
}

.my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
}

.mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
}

.mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
}

.mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
}

.mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
}

.mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.mt-0 {
    margin-top: 0px;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-15 {
    margin-top: 7rem;
}

.mt-20 {
    margin-top: 10rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 5rem;
}

.mb-15 {
    margin-bottom: 7rem;
}

.mb-20 {
    margin-bottom: 10rem;
}

.mt-12 {
    margin-top: 3rem;
}

.max-w-0 {
    max-width: 0rem;
}

.max-w-none {
    max-width: none;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-9xl {
    max-width: 90rem;
}

.max-w-full {
    max-width: 100%;
}

.max-w-min {
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content;
}

.max-w-max {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

.max-w-screen-sm {
    max-width: 640px;
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.object-center {
    -o-object-position: center;
    object-position: center;
}

.overflow-hidden {
    overflow: hidden;
}

.p-1 {
    padding: 0.25rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 0.75rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pr-5 {
    padding-right: 1.25rem;
}

.pb-5 {
    padding-bottom: 1.25rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pt-10 {
    padding-top: 2.5rem;
}

.pb-10 {
    padding-bottom: 2.5rem;
}

.pt-14 {
    padding-top: 3.5rem;
}

.pb-14 {
    padding-bottom: 3.5rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.padding-25 {
    padding: 25px;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inset-0 {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.inset-x-0 {
    right: 0px;
    left: 0px;
}

.top-0 {
    top: 0px;
}

.right-0 {
    right: 0px;
}

.left-0 {
    left: 0px;
}

* {
    --tw-shadow: 0 0 #0000;
}

.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow {
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-new {
    /* --tw-shadow: 0 0 80px 0 rgba(8, 136, 208, 0.5); */
    --tw-shadow: 0 0 80px 0 rgba(30, 30, 30, 0.5);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

* {
    --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/ );
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-white {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.text-gray-800 {
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
}

.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.text-green-500 {
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
}

.text-green-600 {
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
}

.text-blue-900 {
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
}

.text-yel-light {
    --tw-text-opacity: 1;
    color: rgba(252, 243, 69, var(--tw-text-opacity));
}

.text-white {
    color: #ffffff;
}

.text-yel {
    --tw-text-opacity: 1;
    color: rgba(242, 202, 39, var(--tw-text-opacity));
}

.hover\:text-yel-light:hover {
    --tw-text-opacity: 1;
    color: rgba(252, 243, 69, var(--tw-text-opacity));
}

.uppercase {
    text-transform: uppercase;
}

.align-middle {
    vertical-align: middle;
}

.w-40 {
    width: 10rem;
}

.w-auto {
    width: auto;
}

.w-3\/5 {
    width: 60%;
}

.w-3\/12 {
    width: 25%;
}

.w-9\/12 {
    width: 75%;
}

.w-full {
    width: 100%;
}

.z-50 {
    z-index: 50;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-24 {
    gap: 6rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.items-center {
    align-items: center;
}

.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.form-switch {
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
}

    .form-switch i {
        position: relative;
        display: inline-block;
        margin-right: 0.5rem;
        width: 46px;
        height: 26px;
        background-color: #ffdb02;
        /*background-color: #e6e6e6;*/
        border-radius: 23px;
        vertical-align: text-bottom;
        transition: all 0.3s linear;
    }

        .form-switch i::before {
            content: '';
            position: absolute;
            left: 0;
            width: 42px;
            height: 22px;
            background-color: #ffdb02;
            border-radius: 11px;
            transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
            transition: all 0.25s linear;
        }

        .form-switch i::after {
            content: '';
            position: absolute;
            left: 0;
            width: 22px;
            height: 22px;
            background-color: #fff;
            border-radius: 11px;
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
            transform: translate3d(2px, 2px, 0);
            transition: all 0.2s ease-in-out;
        }

    .form-switch:active i::after {
        width: 28px;
        transform: translate3d(2px, 2px, 0);
    }

    .form-switch:active input:checked + i::after {
        transform: translate3d(16px, 2px, 0);
    }

    .form-switch input {
        display: none;
    }

        .form-switch input:checked + i {
            background-color: #4bd763;
        }

            .form-switch input:checked + i::before {
                transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0);
            }

            .form-switch input:checked + i::after {
                transform: translate3d(22px, 2px, 0);
            }

@-webkit-keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@-webkit-keyframes pulse {
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}

@-webkit-keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@media (min-width: 640px) {
    .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * var(--tw-space-y-reverse));
    }

    .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.25rem * var(--tw-space-x-reverse));
        margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
    }

    .sm\:space-x-10 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(2.5rem * var(--tw-space-x-reverse));
        margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
    }

    .sm\:block {
        display: block;
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:flex-col {
        flex-direction: column;
    }

    .sm\:justify-evenly {
        justify-content: space-evenly;
    }

    .sm\:pb-8 {
        padding-bottom: 2rem;
    }

    .sm\:pt-20 {
        padding-top: 5rem;
    }

    .sm\:w-2\/4 {
        width: 50%;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }

    .md\:w-2\/5 {
        width: 40%;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
}

@media (min-width: 1536px) {
}

/*************************/
/*************************/
/*      Custom CSS      */
/*************************/
/*************************/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

nav {
    font-family: "Poppins", sans-serif;
}

.h1 {
    font-size: 4.625rem;
    font-weight: 700;
}

.h2 {
    font-size: 4.5rem;
    font-weight: 700;
}

.h3 {
    font-size: 3.75rem;
    font-weight: 700;
}

.h4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.underlineLink {
    text-decoration: underline;
}

.fineprint {
    font-size: 0.875rem;
}

.subheadingOne {
    font-weight: 400;
    letter-spacing: 0;
    font-size: 1.25em;
    color: #4b4d51;
}

@media (min-width: 1150px) {
    .subheadingOne {
        margin-top: 1.5rem;
    }
}

.hero-title {
    position: relative;
    font-size: 4.2em;
    line-height: 6rem;
}

.hero img {
    width: 100%;
}

.heroCTAlinks {
    /* margin-top: 2rem; */
    margin-top: -4rem;
}

@media (max-width: 1050px) {

    .inner-hero {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .heroCTAlinks {
        margin-top: 0rem;
    }

    .hero-copy {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5em;
        line-height: 2.75rem;
    }
}

.ezdark-text {
    color: var(--ezblack);
}

.dark-blue-text {
    color: var(--ezdarkblue);
}

.light-blue-text {
    color: var(--ezlightblue);
}

.text-yellow {
    color: #edb316;
}

.bg-yellow {
    background-color: #ffc535;
}

.orange-bg {
    background-color: var(--ezorange);
}

.orange-text {
    color: var(--ezorange);
    font-family: "Poppins", sans-serif;
}

.blue-text {
    color: var(--ezblue);
}

.lt-blue-text {
    color: var(--ezblue);
}

.sms-text {
    font-size: 2em;
    color: var(--ezblue);
    font-weight: 900;
}


.light-text {
    color: var(--ezlight);
}

.light-background {
    background-color: #f8f8f8;
}

.medium-background {
    background-color: var(--ezmedium);
}

.dark-background {
    background-color: var(--ezblack);
    background-color: #171E2A;
    color: white !important;
    /*    background-color: #1E1E1E;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23121212' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%230F0F0F'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");*/
}

.footer-background {
    background-color: #08182c;
}

.hide {
    display: none;
}

@media (max-width: 640px) {
    .hideMobile {
        display: none;
    }
}

.py-175-custom {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

/* Responsive video - HERO */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .embed-container iframe,
    .embed-container object,
    .embed-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

footer {
    height: auto;
    padding: 4em .75em;
}

/* Responsive Pricing table tweak */
@media (max-width: 680px) {
    .font-third-rem-b {
        font-size: 0.75rem;
        font-weight: 900;
        line-height: 1rem;
    }

    .font-third-rem,
    span.font-third-rem {
        font-size: 0.75rem;
    }

    .text-2xl {
        font-size: 0.75rem;
        line-height: 1rem;
    }

    /* footer */

    .footer-items,
    .copyright {
        width: 90%;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        height: auto;
    }

    .company-info,
    .footer-nav,
    .footer-links,
    .footer-nav-resourcesblock,
    .copyright {
        margin-top: 1.5rem;
    }

    .company-info,
    .footer-nav,
    .footer-links {
        width: 50%;
    }

    .copyright p {
        width: 48%;
    }

    .copyright {
        display: flex;
        flex-direction: column;
    }
}

.pricing-table .material-icons {
    font-size: 1.5em;
    vertical-align: middle;
}

.py-1-custom {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

/* 492x268 */

/*section#benefits img {
    min-height: 268px !important;
}*/

.benefit-images,
.convert-img {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    max-height: 550px;
    display: flex;
    justify-content: center;
}

span.blue {
    color: #0027E6;
    font-weight: 500;
}

.open-rate {
    background-color: #3c3c3c;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

    .open-rate img {
        height: 100px;
        margin-bottom: 10px;
    }

.convert-img {
    max-height: 300px;
}

#convert-text {
    order: 1;
}

#convert-image {
    order: 2;
}

.my-vertical-align {
    margin: auto 0;
}

@media (max-width: 639px) {
    section#benefits .my-vertical-align {
        order: 2;
    }

    .benefit-images {
        /* display: none; */
        order: 1;
    }

    .text-column {
        /* border: 1px solid red; */
        display: flex;
        flex-direction: column;
    }

    .contact-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .contact-buttons p {
            margin-top: 2rem;
            font-size: 3rem;
        }

    #convert-text {
        order: 2;
    }

    #convert-image {
        order: 1;
    }
}

.show-me {
    visibility: visible;
}

/* mobile menu */

.hide-me {
    visibility: hidden;
}

.show-me {
    visibility: visible;
}

.mobile-menu {
    visibility: hidden;
    width: 100%;
    height: auto;
    position: fixed;
    text-align: center;
    line-height: 4rem;
    opacity: 0;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-bottom: 4px solid #ff8109;
}

    .mobile-menu.show-me {
        visibility: visible;
        opacity: 1;
        transition: 0.5s ease opacity;
    }

    .mobile-menu a {
        color: rgb(11, 31, 82s);
        font-weight: bold;
        font-size: 1.25rem;
    }

        .mobile-menu a:hover {
            border-bottom: 2px solid #ff8109;
        }

.lineheight-2 {
    line-height: 1.25em;
}

.logo-header {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 40px;
}

.mobile-logo {
    margin: 0 auto;
    width: 50vw;
    display: none;
}

@media (max-width: 1050px) {
    .mobile-logo {
        display: block;
    }
}

/* @media (max-width: 875px) { */
@media (max-width: 1200px) {
    nav {
        visibility: hidden;
    }

    #hero {
        padding-top: 0;
    }
}

/* @media (min-width: 875px) { */
@media (min-width: 1200px) {
    .hamburger {
        display: none;
    }

    .logo-header {
        display: none;
    }
}

.login-icon span:hover {
    color: #ff8109;
}

.login-icon span:first-of-type {
    font-size: 14px;
}

.login-icon span:last-of-type {
    margin-top: -2px;
}

/* @media (min-width: 875px) {
	.hamburger {
		display: none;
	}
} */

.email-disclaimer {
    font-size: 0.75rem;
}

/* toggle button */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--ezorange);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

    .slider:before {
        position: absolute;
        content: '';
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

input:checked + .slider {
    background-color: #28a745;
}

input:focus + .slider {
    box-shadow: 0 0 1px #ff8109;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.hero-video {
    vertical-align: middle;
}

.free-trial-hero {
    color: var(--ezblack);
}

p.emailInput {
    width: 100%;
    border: 1px solid red;
}

input[name='email1'] {
    border: 1px solid var(--ezmedium);
    border-right: none;
}

.simple-solutions {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    flex-flow: column nowrap;
}

    .simple-solutions h2 {
        font-size: 2.4em;
        line-height: 1.25;
    }

.simple-solutions-generic {
    width: 100%;
    min-height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ezorange);
}

h3.simple-solutions {
    font-size: 2.75rem;
}

.simple-content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}

.left,
.right {
    width: 50%;
}



.simple-solutions p {
    text-align: center;
    font-size: 1.75rem;
}

.why-choose {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    flex-flow: column nowrap;
    background-position: center center;
    background: url('../../../../assets/img/ez-back.svg ');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

    .why-choose h2 {
        font-size: 2.4em;
    }

@media (max-width: 768px) {
    .simple-content {
        flex-direction: column-reverse;
    }

    .left {
        width: 100%;
        padding: 0 25%;
        margin-top: 4rem;
        /* display: none; */
    }

    .right {
        width: 100%;
        font-size: 2rem;
        padding: 5%;
        margin-top: 5rem;
        margin-bottom: -10rem;
    }

    .simple-solutions p {
        margin-bottom: 5rem;
    }

    .simple-solutions img {
        margin: 20px auto;
    }
}

@media (max-width: 425px) {
    .left {
        margin: 0 auto;
        width: 75%;
        padding: 0;
    }

    .right {
        margin-top: 0;
        font-size: 1.5rem;
        line-height: 3rem;
    }

    .simple-content h3 {
        font-size: 2.5rem;
        line-height: 2.25rem;
    }

    .simple-content p {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (max-width: 415px) {
    .left {
        margin: 0 auto;
        width: 75%;
        margin-top: 150px;
    }

    .right {
        margin-top: 150px;
    }

    .simple-content h3 {
        line-height: 2.5rem;
    }

    .simple-content p {
        line-height: 2rem;
    }
}

.benefits {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.sub-benefits {
    display: flex;
}

@media (max-width: 820px) {

    .sub-benefits {
        flex-flow: column nowrap;
    }
}

.each-benefit {
    margin-top: 1em;
    line-height: 2em;
    margin-bottom: 1.5em;
}

    .each-benefit p:last-of-type {
        margin-left: 45px;
    }

.benefits-title,
.subtitles {
    font-size: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.benefits-title {
    font-weight: 600;
}

    .benefits-title img {
        height: 35px;
        margin-right: 10px;
    }

.subtitlesMedium {
    font-size: 2.5rem;
}

@media (max-width: 640px) {
    .subtitlesMedium {
        font-size: 1.5rem;
    }
}

.benefits-internal:nth-of-type(2) {
    padding-left: 6rem;
    background-color: #f9f9f9;
    /*    color: white !important;
    background-color: #1E1E1E;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23121212' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%230F0F0F'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
*/
}

.benefits-left,
.benefits-right {
    width: 100%;
}

.benefits-left {
    padding-left: 10%;
    background-color: #FFFFFF;
}

.benefits-right {
    padding-right: 10%;
}

@media (max-width: 950px) {
    .benefits {
        flex-direction: column;
    }

    .benefits-left,
    .benefits-right {
        padding-left: 0em;
    }

    .benefits-internal:nth-of-type(2) {
        padding-left: 2rem;
    }
}

.our-features {
    height: 450px;
    background: url('../../../../assets/img/ez-results.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: left;
}
.our-features.ez-results-blue {
        background: url(../../../../assets/img/ez-results-alt.jpg);
}

@media (min-width: 1990px) {
    .our-features {
        height: 600px;
    }
}

@media (max-width: 950px) {

    .our-features {
        height: 300px;
    }
}

@media (max-width: 450px) {

    .our-features {
        height: 200px;
    }
}


#features {
    /*   background-color: #F9FBFE;*/
    color: var(--ezblack);
    background-color: #F4AC24;
    background: url(../../../../assets/img/happy2.jpg);
    background-repeat: no-repeat;
    /* background-size: cover;*/
    overflow: hidden;
    background-position: left;
    display: flex;
    justify-content: flex-end;
    padding: 50px 0;
}

#features.wellness {
    background: url(../../../../assets/img/wellness.jpg);
}

@media (min-width: 1990px) {
    #features {
        justify-content: center;
    }
}

.features-wrapper {
    padding: 5vmin;
    margin-right: 15vh;
    /*    background-color: white;*/
}

@media (max-width: 1725px) {

    #features {
        max-height: 740px;
        padding: 0;
    }

    .features-wrapper {
        margin-right: 0;
        width: 70%;
    }
}

@media (max-width: 1180px) {

    #features {
        max-height: 100%;
        padding: 0;
        background-position: right;
        background-color: #F4AC24;
    }

    .features-wrapper {
        margin-right: 0;
        width: 100%;
    }
}


#features p {
    color: var(--ezblack);
}


.result-img {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

    .result-img img {
        width: 100%;
        max-width: 250px;
    }

.integration-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
}



p.sub-heading span {
    font-weight: 600;
}

.integration-headline img {
    width: 100%;
    max-width: 400px;
}

.integrations h2 {
    font-weight: 500;
    color: white;
    font-size: 1.75em;
}

#features p span {
    color: #0020ba;
    font-weight: 600;
}

.integrationLogos {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .integrationLogos img {
        margin: 0 10px;
        height: 100%;
        max-height: 50px;
    }

/* .freeDemo p:first-of-type {
	font-size: 1.5rem;
} */
h2.scheduling-text {
    font-weight: 700;
    color: var(--ezblack);
}

    h2.scheduling-text span {
        font-weight: 800;
        color: var(--ezorange);
    }

#contact h2 {
    font-weight: 700;
}

.hours-of-op {
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--ezorange);
}

.footer-text {
    font-size: 24px;
    font-weight: 500;
}

img.footer-icon {
    width: 50px;
}

@media (max-width: 425px) {
    .freeDemo h2 {
        font-size: 2.5rem;
    }

    .contact-buttons p {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .integrationLogos {
        flex-direction: column;
    }

        .integrationLogos img {
            margin: 1rem 0;
            max-width: 30vw;
        }
}

/*****************/
/*  New Pricing  */
/*****************/

.orange-15 {
    background-color: rgba(255, 129, 9, 0.15);
}

.orange-25 {
    background-color: rgba(255, 129, 9, 0.25);
}

.orange-50 {
    background-color: rgba(255, 129, 9, 0.5);
}

.orange-75 {
    background-color: rgba(255, 129, 9, 0.75);
}

.orange-100 {
    background-color: rgba(255, 129, 9, 1);
}

.blue-15 {
    background-color: rgb(8, 136, 208, 0.25);
}

.blue-25 {
    background-color: rgb(8, 136, 208, 0.25);
}

.blue-50 {
    background-color: rgb(8, 136, 208, 0.5);
}

.blue-75 {
    background-color: rgb(8, 136, 208, 0.75);
}

.blue-100 {
    background-color: rgb(8, 136, 208, 1);
}

.package-heading {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    height: 200px;
}

.package-name {
    font-size: 1.22em;
}

.package-features p {
    font-size: 1.22em;
    line-height: 54px;
    letter-spacing: -0.5px;
}

.select-btn-dark,
.select-btn-light {
    width: 75%;
    background-color: var(--ezblack);
    padding: 10px 30px;
    border-radius: 8px;
    color: var(--ezwhite);
    transition: ease 0.25s;
}

.select-btn-light {
    background-color: var(--ezwhite);
    color: var(--ezblack);
}

    .select-btn-dark:hover,
    .select-btn-light:hover {
        background-color: #28a745;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.75);
    }

.info-panel-hover:hover {
    box-shadow: 0 0 20px var(--ezblack);
}

.show-mobile {
    display: none;
}

.yes {
    color: #28a745;
}

.no {
    color: #dc3545;
}

.pricing-table {
    margin-top: 5em;
}

.inactive {
    display: none;
}

.feature-titles {
    letter-spacing: -1.45px;
}

    .feature-titles p {
        /* font-size: 90%; */
        font-size: 100%;
    }

@media (max-width: 1150px) {
    .pricing-table {
        display: flex;
        justify-content: flex-start;
        flex-flow: wrap;
        padding: 0 5%;
        margin-top: 3em;
    }

        .pricing-table p {
            text-align: center;
        }

    .info-panel,
    #single,
    #standard,
    #expanded,
    #power {
        width: 48%;
    }

        .info-panel:nth-of-type(1) {
            width: 100%;
        }

    .hide-mobile {
        display: none;
    }

    .show-mobile {
        display: inline;
    }
}

@media (max-width: 700px) {
    .pricing-table {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 10%;
        margin-top: 0em;
    }

    .info-panel,
    #single,
    #standard,
    #expanded,
    #power {
        width: 100%;
    }

    .pricing-table p {
        text-align: center;
    }
}

.tryFreeBtn {
    font-size: 1em;
}

.package-term b {
    color: #dc3545;
}

.most-popular {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -49px auto 15px auto;
    font-size: 0.75em;
    font-weight: 700;
    width: 80%;
    color: #fff;
    background-color: #28a745;
    padding: 0.5em 2em;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -5px 20px rgba(150, 150, 150, 0.65);
    z-index: -2;
}

.saving-variable {
    color: #dc3545;
    font-weight: 700;
}

.boxedBorder {
    border: 1px solid rgba(8, 136, 208, 0.5);
    border-radius: 10px;
    padding: 1em;
}

.boxedBorder-background {
    border: 1px solid rgba(8, 136, 208, 0.5);
    border-radius: 10px;
    padding: 1em;
    background-color: var(--realwhite);
}

.video p {
    font-size: 1.25em;
}

.button {
    width: 50%;
    display: block;
    text-align: center;
    padding: 0.5em 2em;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 1.25em;
    transition: transform 0.5s ease-in-out;
}

    .button:hover {
        transform: scale(1.1); /* Scale up by 10% */
        transition: transform 0.5s ease-in-out;
    }

.buy-now-box {
    /* border: 2px solid var(--ezdarkblue);*/
    border-radius: 10px;
    background-color: var(--ezblue);
    padding: 2em;
    background: url('/assets/img/tile-blue.svg');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: center;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

    .buy-now-box p:first-of-type {
        /*  background-color: var(--ezdarkblue);*/
        color: var(--ezwhite);
        padding: 0;
        border-radius: 5px 5px 0 0;
        text-align: left;
        font-size: 2.25em;
        margin: 0;
        /* text-shadow: 1px 1px 1px #000000;*/
    }

    .buy-now-box p:last-of-type {
        font-size: 1.25em;
        color: var(--ezwhite);
        text-align: left;
        padding: 1em 0;
        /* text-shadow: 1px 1px 1px #000000;*/
    }

    .buy-now-box .button {
        width: 100%;
        display: block;
        text-align: center;
        padding: 0.5em 2em;
        border: solid 2px var(--ezwhite);
        border-radius: 5px;
        font-size: 1.25em;
        font-weight: 700;
        background-color: #f3f3f3;
        color: #0020BA;
        font-weight: 700;
    }

.buy-now {
    background-color: #ffffff52;
    color: var(--ezwhite);
}

.pickone {
}

    .pickone img {
        width: 100%;
        max-width: 600px;
        margin-top: 50px;
    }

.get-started-div img {
    width: 100%;
    max-width: 700px;
}

.flex-btn {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.auto-buy-now-box {
    border-radius: 10px;
    background-color: var(--ezblue);
    padding: 2em;
    /*    background: url('/assets/img/tile-blue.svg');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: center;*/
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

    .auto-buy-now-box p:first-of-type {
        color: var(--ezwhite);
        padding: 0;
        border-radius: 5px 5px 0 0;
        text-align: center;
        margin-bottom: 20px;
        font-size: 2.25em;
    }

    .auto-buy-now-box p:last-of-type {
        font-size: 1.25em;
        color: var(--ezwhite);
        text-align: left;
        padding: 1em 0;
    }

    .auto-buy-now-box .button {
        display: block;
        text-align: center;
        padding: 0.5em 2em;
        border: solid 2px var(--ezwhite);
        border-radius: 5px;
        font-size: 1.25em;
        font-weight: 700;
        background-color: #f3f3f3;
        color: #0020BA;
        font-weight: 700;
    }

.free-trial-box {
    border-radius: 10px;
    background-color: var(--ezorange-bright);
    padding: 2em;
    background: url('/assets/img/tile-orange.svg');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: center;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

    .free-trial-box p:nth-child(1) {
        color: var(--ezwhite);
        padding: 0;
        border-radius: 5px 5px 0 0;
        text-align: left;
        font-size: 2.25em;
        margin: 0;
        /* text-shadow: 1px 1px 2px #000000;*/
    }

    .free-trial-box p:nth-of-type(2) {
        font-size: 1.25em;
        color: var(--ezwhite);
        text-align: left;
        padding: 1em 0;
        /*text-shadow: 1px 1px 1px #000000;*/
    }



.free-trial-button {
    width: 100%;
    display: block;
    text-align: center;
    padding: 0.5em 2em;
    color: var(--ezwhite);
    border: 2px solid var(--ezwhite);
    border-radius: 5px;
    font-size: 1.25em;
    background-color: #f3f3f3;
    color: #FE4B09;
    font-weight: 700;
}

.non-auto-trial-box {
    /*    border: 2px solid var(--ezdarkblue);*/
    border-radius: 10px;
    background-color: var(--ezorange-bright);
    padding: 2em;
    /*   background: url('/assets/img/tile-orange.svg');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: center;*/
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

    .non-auto-trial-box p:nth-child(1) {
        color: var(--ezwhite);
        padding: 0;
        border-radius: 5px 5px 0 0;
        text-align: center;
        font-size: 2.25em;
        margin-bottom: 20px;
        font-size: 2.25em;
    }

    .non-auto-trial-box p:nth-of-type(2) {
        font-size: 1.25em;
        color: var(--ezwhite);
        text-align: left;
        padding: 1em 0;
        /*text-shadow: 1px 1px 1px #000000;*/
    }



.non-auto-trial-button {
    display: block;
    text-align: center;
    padding: 0.5em 2em;
    color: var(--ezwhite);
    border: 2px solid var(--ezwhite);
    border-radius: 5px;
    font-size: 1.25em;
    background-color: #f3f3f3;
    color: #FE4B09;
    font-weight: 700;
}

.non-auto-trial-box .button {
    display: block;
    text-align: center;
    padding: 0.5em 2em;
    border: solid 2px var(--ezwhite);
    border-radius: 5px;
    font-size: 1.25em;
    font-weight: 700;
    background-color: #f3f3f3;
    color: #FE4B09;
    font-weight: 700;
}

.non-auto-trial-box .free-trial-button {
    display: block;
    text-align: center;
    padding: 0.5em 2em;
    color: var(--ezwhite);
    border: 2px solid var(--ezwhite);
    border-radius: 5px;
    font-size: 1.25em;
    background-color: #f3f3f3;
    color: #FE4B09;
    font-weight: 700;
}

.hero-video {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3em;
        line-height: 1.15em;
        margin-bottom: 0.5em;
    }

    .subheadingOne {
        font-size: 2em;
        line-height: 1.25em;
    }

    .hero-video {
        display: flex;
        flex-direction: column-reverse;
    }

    .heroCTAlinks p:first-child {
        margin-top: -1rem;
        font-size: 2.5rem;
    }

    .heroCTAlinks p:nth-child(2) {
        font-size: 2.5rem;
    }
}

@media (max-width: 425px) {
    .hero-title {
        font-size: 1.75em;
        line-height: 1em;
        margin-bottom: 0.5em;
    }

    .subheadingOne {
        font-size: 1.25em;
        line-height: 1.25em;
    }

    .hero-video {
        display: flex;
        flex-direction: column-reverse;
    }

    .heroCTAlinks p:first-child {
        margin-top: -1rem;
        font-size: 1.25rem;
    }

    .heroCTAlinks p:nth-child(2) {
        font-size: 1.25rem;
    }
}


/* new testimonial section */

.light-bg {
    background-color: #f4f4f4;
}

#testimonial-box {
    margin: auto 0;
    border: 1px solid #fff;
    border-radius: 10px;
    border: 2px solid #ff8109;
    padding: 2rem;
    background-color: rgb(255,255,255);
    /* background-color: rgba(0, 0, 0, 0.25); */
    font-size: 1.25rem;
}

#testimonial-title {
    color: #ff8109;
    margin-top: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5rem;
}

    #testimonial-title span {
        font-size: 1rem;
        font-weight: normal;
        color: #1e1e1e;
    }

#capterra-shortlist-image {
    max-width: 200px;
    margin: 30px auto 0;
}


.hero-logo-images {
    display: flex;
    justify-content: center; /* horizontally center the logos */
    align-items: center; /* vertically center the logos */
}

.hero-logos {
    max-height: 125px;
    margin: 30px auto 0;
}

    .hero-logos:nth-child(2) {
        max-width: 125px;
        height: 125px;
    }

.mobile-logo {
    margin-top: -15px;
    margin-left: -10px;
    width: 20vw;
}

@media screen and (max-width: 768px) {
    /* Adjust font size and line height for screens up to 768px wide */
    .mobile-logo {
        width: 25vw;
        margin-top: -15px !important;
        margin-left: -10px;
    }

    .hero-logo-images {
        display: block
    }
}

@media screen and (max-width: 480px) {
    /* Adjust font size and line height for screens up to 480px wide */

    .mobile-logo {
        width: 45vw;
        margin-top: -15px !important;
        margin-left: -10px;
    }

    .hero-logo-images {
        display: block;
        margin: auto;
    }
}

.portfolio-btn {
    border: solid 1px var(--ezblue);
    background-color: white;
    color: var(--ezblue);
    text-decoration: none !important;
    transition: background-color ease .25s;
    transition: color ease .25s;
    font-weight: 700;
    margin-bottom: 25px !important;
    margin: 0 auto;
    width: 300px;
    cursor: pointer;
}

    .portfolio-btn:hover {
        background-color: white;
        border: solid 1px var(--ezblue);
    }

.free-trial {
    border: solid 1px var(--ezblue);
    background-color: #f3f3f3;
    color: var(--ezblue);
    text-decoration: none !important;
    transition: background-color ease .25s;
    transition: color ease .25s;
    font-weight: 700;
}

    .free-trial:hover {
        background-color: #ededed;
    }

.btn {
    display: block;
    margin: 1rem auto 1rem;
    text-align: center;
    padding: 0.5em 1em;
    border-radius: 5px;
    font-size: 1em;
}

.hero-second-column {
    display: flex;
    justify-content: flex-start;
    align-items: unset;
    height: 100%;
    align-items: end;
}


/************************/
/*  Extending Tailwinds */
/************************/

#money-back-seal {
    display: flex;
    justify-content: center;
}

    #money-back-seal img {
        max-width: 175px;
    }

.video {
    max-width: 555px;
    width: 100%;
    position: relative;
    min-height: 315px;
}

    .video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0 auto;
    }

.content ul {
    max-width: 75%;
    margin: 0 auto;
    list-style: disc;
}

@media screen and (max-width: 768px) {
    .video {
        margin-top: 0;
    }
}


.feature-video {
    vertical-align: middle;
    margin-top: 35px;
}

.feature-video {
    width: 100%;
    max-width: 400px;
}
/************************/
/*  corp logos */
/************************/

.logos {
    width: 100%;
    display: flex;
    padding-bottom: 45px;
}

.flex-wide {
    display: flex;
    width: 100%;
    flex-flow: column nowrap;
}

.corpLogos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
}

    .corpLogos img {
        width: 200px;
        margin: 10px 25px;
    }

@media (max-width:1028px) {
    .corpLogos img {
        width: 150px;
        margin: 10px 10px;
    }
}

@media (max-width:768px) {
    .corpLogos img {
        width: 125px;
        margin: 10px 10px;
    }
}

@media (max-width: 440px) {
    .corpLogos img {
        width: 100px;
        margin: 10px 10px;
    }
}



/*******************************/
/*  Industy Segment Classes  */
/******************************/


section.industry-segments {
    display: flex;
    justify-content: center;
    /*    background-color: #F9FBFE;*/
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f9fbfe+0,ffffff+100&1+0,0+100 */
    background: linear-gradient(to bottom, rgba(249,251,254,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.industry-div {
    background-color: white;
    border-radius: 10px;
    margin: 50px 25px;
    width: 100%;
    box-shadow: 0px 0px 10px #cdcdcd;
}

.industry-innner {
    padding: 40px;
}

    .industry-innner h3 {
        margin: 0 0 20px 0;
        text-align: left;
        color: var(--ezblue);
    }

    .industry-innner ul {
        display: flex;
        flex-flow: row wrap;
    }

    .industry-innner li {
        display: flex;
        flex-flow: column nowrap;
        flex: 33.33%;
    }

        .industry-innner li .sub-ind {
            display: flex;
            margin-bottom: 10px;
        }

            .industry-innner li .sub-ind .icon {
                margin-right: 10px;
                min-width: 25px;
            }

                .industry-innner li .sub-ind .icon img {
                    width: 25px;
                }

            .industry-innner li .sub-ind .segment p {
                font-size: .87rem;
                padding-right: 20px;
            }


.footer-nav {
    font-family: "Poppins", sans-serif;
}

    .footer-nav h5 {
        color: #F38020;
    }

.company-info {
    font-size: .875rem;
    font-family: "Poppins", sans-serif;
}


    .company-info a {
        font-size: .875rem;
    }

.footer-nav-resourcesblock {
    margin-top: 20px;
}

.footer-links ul li {
    font-size: .875rem;
    font-family: "Poppins", sans-serif;
}

.footer-links h5 {
    color: #F38020;
}

.footer-orange {
    color: #F38020;
    font-weight: 700;
}


.text-up {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.p-up {
    font-size: 1.25rem;
}

.feature-div {
    display: flex;
    flex-flow: row wrap;
}

.feature-text {
    display: flex;
    flex: 0 0 100%;
    padding: 10px 20px 15px;
}


.feature-points {
    display: flex;
    flex-flow: column nowrap;
    border-bottom: #aaa dashed 1px;
    padding-bottom: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
}

    .feature-points ul {
        list-style: circle;
        margin-left: 0;
        margin-top: 15px;
        font-size: 1.25rem;
    }

    .feature-points li {
        margin-bottom: 10px;
    }

    .feature-points h6 {
        font-size: 1.5rem;
        line-height: 1.5;
        font-weight: 600;
    }

    .feature-points p {
        font-size: 1.25rem;
        line-height: 1.5;
        text-align: left;
    }

.swirl-column {
    display: flex;
    width: 40px;
    align-items: flex-start;
    margin-right: 10px;
    padding-top: 5px;
}

    .swirl-column img {
        width: 30px;
        height: 30px;
    }

.etm-footer {
    padding: 50px 0;
}

.etm-header h2 {
    text-align: left;
}

.etm-footer h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
}


.badge-icons {
    width: 100%;
    background-color: #08182C;
    padding: 3em 0;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}



.badges {
    display: flex;
    justify-content: center;
        background-color: #08182C;
}

.badge-div {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

h2.text-logos {
    width: 100%;
    font-size: 3rem;
}

h3.text-logos {
    width: 100%;
    font-size: 2rem;
    font-weight: 400;
}


.sub-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    /*   min-width: 650px;*/
    flex: 0 0 auto;
}

.sub-badge-short {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.badge-div a img {
    margin: 10px;
    min-height: 12vh;
    height: 12vh;
}

.sub-badge-short a img {
    margin: 10px;
    height: auto;
    min-height: unset;
    width: 100%;
    width: 150px;
}

.sf-root {
    margin-left: 0px;
}

@media (max-width: 450px) {

    .badge-div a img {
        max-width: 100px !important;
    }

    .sub-badge {
        min-width: auto;
    }
}

.below-boost {
    display: flex;
    align-items: center;
    min-height: 160px;
}

@media (max-width: 768px) {

    .below-boost {
        min-height: unset;
    }
}

.text-white {
    color: white;
}

.highlight-text {
    display: flex
;
    align-items: flex-start;
    gap: 1.5em;
}

.highlight-text span {
   color:var(--ezorange);
    margin: 3px 0 0 0;
}


/* Accordion - General questions Section - OVERWRITE FROM MAIN CSS ACCORDION FILE */

.general-questions h2 {
    margin-bottom: 1em;
}

.accordion {
    color:#818181;
    padding: 18px 25px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin: 5px 0 0;
    font-size: 1.25em;
    font-weight: 400;
    border-radius: 10px;
    background: url(/assets/img/plus.svg);
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: 15px;
    background-position-x: 97%;
    background-position-y: 50%;
    background-color:#F4F4F4;
    cursor: pointer;
    border: none;
    border-radius: 50px;
}

    .accordion:hover {
        color: #fff;
        background-color:#9e9e9e;
    }

.active {
    color: #fff;
    background: url(/assets/img/minus.svg);
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: 15px;
    background-position-x: 97%;
    background-position-y: 50%;
    background-color:#9e9e9e;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
    padding: 1em;
    /*	box-shadow:	0 0 10px #e4e4e4;*/
    margin-bottom: 1em;
    border: solid 2px #9e9e9e;
      border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


button:focus {
    outline: none;
}
