:root {
    /* Colors */
    --brand-primary: #329332;
    --brand-dark: #334652;
    --brand-secondary: #334652;
    --text: #334652;
    --text-placeholder: #6e7881;
    --border: #d6dadc;
    --bg-content: #f1f2f3;
    --warning: #ff0000;

    /* Sizing */
    --nav-height: 60px;
    --footer-min-height: 75px;

    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;

    /* Box shadows */
    --box-shadow: 0px 3px 6px 0px rgba(18,32,70,0.2);
}


* {
    box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-content);
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text);
}
a {
    color: var(--brand-primary);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
p, li {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.875rem;
    font-weight: 500;
}
li {
    margin-bottom: 1rem;
}
p.big-text {
    font-size: 1.375rem;
    line-height: 2.25rem;
}
p.small-text {
    font-size: 0.6875rem;
    line-height: 1rem;
}
h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
}
h1 {
    margin: 0 auto 2.5rem;
    font-size: 2.3125rem;
    line-height: 2.865rem;
}
h2 {
    font-size: 2rem;
    line-height: 2.25rem;
}
h3 {
    font-size: 1.5rem;
    line-height: 1.875rem;
}
h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
}
.small {
    font-weight: 500 !important;
}

/* Buttons */
.btn {
    display: inline-block;
    height: 50px;
    padding: 0 1.875rem;
    border-radius: 25px;
    line-height: 50px;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}
.btn-lg {
    padding: .75rem 3rem;
    font-size: 1.375rem;
}
.btn-primary {
    background: #fff;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary) !important;
    transition: all .4s ease-in-out;
}
.btn-primary:hover {
    background-color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    color: #fff !important;
    text-decoration: none;
    transition: all .4s ease-in-out;
}
.btn-secondary {
    background-color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    color: #fff;
    transition: all .4s ease-in-out;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #fff;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    text-decoration: none;
    transition: all .4s ease-in-out;
}

.white {
    color: #fff;
}
.blue {
    color: var(--brand-primary);
}
.white-bg {
    background-color: #fff;
}
.blue-bg {
    background-color: var(--brand-primary);
}
.dark-blue-bg {
    background-color: var(--brand-dark);
}
.box-shadow {
    box-shadow: var(--box-shadow);
}
.rounded {
    border-radius: 8px;
}

/* Nav */
#navbar {
    box-sizing: content-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgba(18,32,70,0.15);
    z-index: 3;
    transition: top 0.2s ease-in;
}
#navbar .content, .nav {
    display: flex;
    align-items: center;
    height: var(--nav-height);
}
#navbar .content {
    height: var(--nav-height);
}
#navbar img {
    height: calc(var(--nav-height) - 10px);
    margin-top: 4px;
}
#navbar a {
    font-size: .875rem;
    color: var(--text);
    transition: color 0.2s ease-in;
}
#navbar a:hover {
    color: var(--brand-primary);
    transition: color 0.2s ease-in;
    text-decoration: none;
}
#navbar a.btn-primary {
    border-radius: 17px;
    height: 34px;
    line-height: 32px;
    transition: color 0.4s ease-in-out;
}

.main {
    min-height: calc(100vh - var(--footer-min-height));
    padding-top: var(--nav-height);
}
.content {
    width: calc(100% - 2.5rem);
    max-width: 1200px;
    min-width: 280px;
    margin: auto;
}
.section {
    padding: 5rem 0 6.25rem 0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 630px;
    background: url(//5da2273bfeab0553cee9-ae6db037ec138680bf57010b53b53e69.ssl.cf2.rackcdn.com/sales/hero.webp) no-repeat center center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}
.hero-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 705px;
    padding-left: 225px;
    z-index: 2;
}
.hero-right {
    max-width: 425px;
    z-index: 2;
}
.hero-right p {
    max-width: 320px;
    font-size: 1.25rem;
    font-weight: 600;
}
.hero .btn-primary {
    height: 62px;
    line-height: 62px;
    border-radius: 31px;
    font-size: 1.25rem;
}

/* Map */
.map-field {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40%;
    z-index: 1;
}
.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--brand-primary);
    box-shadow: 0 0 6px 1px var(--brand-primary);
    border-radius: 50%;
}
.point-one {
    top: 5%;
    left: 17%;
}
.point-two {
    top: 22%;
    left: 23%;
}
.point-three {
    top: 23%;
    left: 61%;
}
.point-four {
    top: 60%;
    left: 16%;
}
.point-five {
    top: 53%;
    left: 39%;
}
.point-six {
    top: 63%;
    left: 61%;
}
.point-seven {
    top: 76%;
    left: 55%;
}
.point-eight {
    top: 89%;
    left: 7%;
}
.point-nine {
    top: 88%;
    left: 41%;
}

/* Map marker animation */
.pin {
    position: absolute;
    top: -19px;
    left: 11px;
    width: 30px;
    height: 30px;
    margin: -20px 0 0 -20px;
    background: var(--brand-primary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation-name: bounce;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-duration: 15s;
    animation-delay: calc(3s * calc(var(--pin) - 1));
}
.pin::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    margin: 8px 0 0 8px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
}
.pulse {
    position: absolute;
    top: -8px;
    left: 11px;
    height: 14px;
    width: 14px;
    margin: 11px 0px 0px -12px;
    border-radius: 50%;
    transform: rotateX(55deg);
    z-index: -2;
}
.pulse::after {
    content: "";
    border-radius: 50%;
    height: 40px;
    width: 40px;
    position: absolute;
    margin: -13px 0 0 -13px;
    opacity: 0;
    box-shadow: 0 3px 6px 2px var(--brand-primary);
    animation: pulsate 15s ease-out;
    animation-iteration-count: infinite;
    animation-delay: calc(3s * calc(var(--pin) - 1));
}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }
    3.5% {
        opacity: 1.0;
    }
    7% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
    10.5% {
        opacity: 1.0;
    }
    14% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
    17.5% {
        opacity: 1.0;
    }
    21% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes bounce {
    0% {
        opacity: 0;
        transform: translateY(-2000px) rotate(-45deg);
    }
    4.2% {
        opacity: 1;
        transform: translateY(30px) rotate(-45deg);
    }
    5.6% {
        transform: translateY(-10px) rotate(-45deg);
    }
    7% {
        transform: translateY(0) rotate(-45deg);
        opacity: 1;
    }
    /* How long before we start fading? */
    20% {
          opacity: 1;
    }
    /* How long to spend fading */
    25% {
      transform: translateY(0) rotate(-45deg);
      opacity: 0;
    }
    100% {
      opacity: 0;
      transform: translateY(-2000px) rotate(-45deg);
    }
}

/* Card slider */
.hero .slider {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .slider .card {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 484px;
    height: 326px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--brand-primary);
    box-shadow: 0 0 20px 0 rgba(50,147,50,0.3);
    opacity: 0;
    pointer-events: none;
    animation: slideUp 15s linear infinite;
    animation-delay: calc(3s * var(--delay));
}
.hero .slider .card:last-child {
    animation-delay: calc(-3s * var(--delay));
}
.card table {
    padding-top: 1rem;
}
.card th {
    padding: 0 1rem 1rem 0;
}
.card th div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    font-size: 1.5625rem;
}
.card td {
    padding-bottom: 1rem;
    font-size: 1.3125rem;
}
.card td div {
    font-size: 0.8125rem;
}
.card td sup {
    font-size: 0.6875rem;
}
.card .profile {
    font-size: 1.75rem;
    text-align: center;
}
.card .profile img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0.5);
    }
    5%,
    20% {
        opacity: 0.4;
        transform: translateY(100%) scale(0.7);
    }
    25%,
    40% {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }
    45%,
    60% {
        opacity: 0.4;
        transform: translateY(-100%) scale(0.7);
    }
    65%,
    100% {
        opacity: 0;
        transform: translateY(-100%) scale(0.5);
    }
}

/* Why */
.why-content.flex-col {
    flex-grow: 2;
}
.features {
    padding-left: 20%;
}
.features li,
.plan li {
    padding: 0 0 20px 50px;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: bold;
    list-style: none;
}
.features li:before,
.plan li:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    margin-left: -50px;
    background-image: url(//5da2273bfeab0553cee9-ae6db037ec138680bf57010b53b53e69.ssl.cf2.rackcdn.com/sales/circle_check.svg);
}

/* Product info */
.tagline {
    margin-top: -70px;
    padding: 0 1rem;
    color: #fff;
    clip-path: polygon(0% 100%, 80px 0%, 100% 0%, 100% 100%);
}
.product-item p {
    margin: 0;
}
.product-item img {
    max-width: 50px;
    margin-top: 5px;
}
p.contact-center-tagline {
    line-height: 1.25rem;
}
.contact-center-tagline img {
    max-height: 38px;
}

/* Metrics */
.metric-row {
    column-gap: 40px;
}
.metric {
    min-width: 220px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}
.metric .blue {
    margin-top: 10px;
    font-size: 4.375rem;
}
.metric .blue sup,
.metric .blue span {
    font-size: 2.5rem;
}
.metric i {
    display: block;
    margin-top: -6px;
    font-size: 0.825rem;
    color: var(--brand-primary);
}

/* How */
.how-it-works .max-width-300 {
    margin-bottom: 160px;
}
.how-icons {
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}
.how-line {
    position: absolute;
    bottom: 0;
    top: 0;
    z-index: 0;
    width: 1px;
    border-right: 1px dashed var(--brand-primary);
}
.how-icons div img {
    padding: 10px 0;
    background-color: #fff;
}
.how-icons div:last-child img {
    margin-bottom: -4px;
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
    background-color: white;
    border: 1px solid var(--brand-primary);
    border-radius: 50%;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--brand-primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Marquee */
.marquee {
    position: relative;
    display: flex;
    --gap: 6rem;
    gap: var(--gap);
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(
        var(--mask-direction, to right),
        hsl(0 0% 0% / 0),
        hsl(0 0% 0% / 1) 20%,
        hsl(0 0% 0% / 1) 80%,
        hsl(0 0% 0% / 0)
    );
}
.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: var(--gap);
    justify-content: space-around;
    min-width: 100%;
    animation: scroll 40s linear infinite;
}
.marquee-content div {
    flex: 0 0 auto;
    --max-width: 300px;
    --max-height: 80px;
    max-width: var(--max-width);
    max-height: var(--max-height);
    text-align: center;
}
.marquee-content div img {
    max-width: var(--max-width);
    max-height: var(--max-height);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-content {
    animation-play-state: paused !important;
  }
}

/* Plans */
.plans {
    gap: 30px 5%;
}
.plan {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    background-color: var(--bg-content);
}
.plan p {
    font-weight: 500;
}
.plan-two {
    color: #fff;
    background-color: var(--brand-dark);
}
.plan-price {
    font-size: 3.75rem;
    font-weight: 700;
}
.plan-price sup {
    font-size: 2rem;
}
.plan-price span {
    font-size: 1.25rem;
}
.plan-price i {
    padding: 0 4px;
    font-weight: 400;
    font-style: normal;
}
.plan li {
    font-size: 1.125rem;
}
.popular {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
}

/* Contact */
#form {
    margin-bottom: calc(100vh - 656px);
}
#form h2 {
    margin-right: 350px;
}
.form-input {
    min-width: 300px;
}
.grecaptcha-badge {
    display: none;
}
.contact-info {
    border-left: 1px dotted var(--border);
}

/* Footer */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: var(--footer-min-height);
    padding: 0 1.25rem;
    font-size: .75rem;
    color: var(--brand-primary);
}
footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease-in;
}
footer a:hover {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.2s ease-in;
}
footer .bullet {
    font-size: 1.5rem;
}

.grecaptcha-badge {
    display: none;
}

/* Offer modal */
.modal:target:before {
    display: none;
}
.modal:before {
    content:"";
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
}
.modal {
    display: flex;
    justify-content: center;
}
.modal .modal-dialog {
    position: fixed;
    top: 10%;
    width: 96%;
    max-width: 600px;
    background: #fff;
    border-radius: 8px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    z-index: 11;
}

.modal .form-input {
    background-color: var(--bg-content);
}
.modal .form-label {
    color: var(--text-placeholder);
}
.btn-close, .btn-close:hover {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 30px;
    color: var(--border);
    text-decoration: none;
}
.modal .divider {
    width: 20%;
    height: 6px;
    margin: 20px auto;
    background-color: var(--brand-primary);
}

@media screen and (max-width: 1200px) {
    .nav a:not(.btn-primary) {
        display: none;
    }
    .map-field {
        display: none;
    }
    .hero .flex.gap-70 {
        gap: 5%;
    }
    .hero-left {
        padding-left: 0;
    }
}
@media screen and (max-width: 1080px) {
    .how-it-works .max-width-300 {
        max-width: 200px;
    }
    .metrics.gap-100 {
        gap: 20px;
        padding-bottom: 40px;
    }
    .metrics h2.align-left,
    .metrics .flex-col {
        text-align: center;
    }
    .metrics h2 {
        margin-top: 10px;
    }
    .metric {
        min-width: 150px;
        margin-bottom: 20px;
        font-size: 0.875rem;
    }
    .metric .blue {
        margin-top: 0;
        font-size: 3.5rem;
    }
    .metric .blue sup,
    .metric .blue span {
        font-size: 2rem;
    }
    .metric i {
        font-size: 0.825rem;
    }
    .plan-price {
        font-size: 3rem;
    }
    .plan-price sup {
        font-size: 1.5rem;
    }
    .plan-price span {
        font-size: 1rem;
    }
}
@media screen and (max-width: 950px) {
     .hero.flex {
        display: block;
        padding-top: 8%;
        min-height: calc(100vh - 100px);
        background: url(//5da2273bfeab0553cee9-ae6db037ec138680bf57010b53b53e69.ssl.cf2.rackcdn.com/sales/hero_sm.webp) no-repeat center center;
        background-size: cover;
     }
     .hero-left {
        position: absolute;
        width: calc(100% - 2.5rem);
        max-width: 100%;
        bottom: 50%;
     }
     .hero .slider {
        display: block;
        transform: scale(0.7);
     }
     @keyframes slideUp {
        0% {
            opacity: 0;
            transform: translateY(100%) scale(0.5);
        }
        5%,
        20% {
            opacity: 0;
            transform: translateY(100%) scale(0.7);
        }
        25%,
        40% {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }
        45%,
        60% {
            opacity: 0;
            transform: translateY(-100%) scale(0.7);
        }
        65%,
        100% {
            opacity: 0;
            transform: translateY(-100%) scale(0.5);
        }
    }
     .hero .slider .card {
        left: 50%;
        margin-left: -242px;
     }
     .hero-right {
        align-self: flex-start;
        width: 100%;
        max-width: 100%;
        text-align: center;
     }
     .hero h1.align-left,
     .hero p {
        text-align: center;
     }
     .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
     }
     .hero p {
        max-width: 100%;
        margin: 10px 0 30px 0;
     }
    .tagline.max-width-50p {
        max-width: 100%;
        margin: -40px 0 50px 0;
        clip-path: none;
    }
    .tagline .max-width-550 {
        max-width: 100%;
    }
    .tagline h2.align-right {
        text-align: center;
    }
    .product-info .btn.mt-10 {
        margin-top: 40px;
    }
    .features.min-width-500 {
        min-width: 300px;
    }
    .footer .flex-col,
    .footer .flex-col.footer-terms {
        min-width: 100%;
        text-align: left;
    }
}
@media screen and (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }
    p {
        line-height: 1.5rem;
    }
    p.small {
        font-size: 0.625rem;
    }
    .content.pt-80 {
        padding-top: 30px !important;
    }
    .content.pb-100 {
        padding-bottom: 30px !important;
    }
    .why h2.mb-40 {
        margin-bottom: 20px;
    }
    .features.min-width-500 {
        padding: 0;
    }
    .features li, .plan li {
        padding: 0 0 10px 42px;
        font-size: 1.25rem;
        line-height: 1rem;
    }
    .features li:before,
    .plan li:before {
        width: 22px;
        height: 22px;
        margin-left: -42px;
    }
    .plan li {
        font-size: 1rem;
    }
    .metrics.gap-100 {
        display: block;
    }
    .metrics h2.mb-20 {
        margin-bottom: 40px;
    }
    .how-it-works h2.mb-40 {
        margin-bottom: 30px;
    }
    .how-it-works h3 {
        font-size: 1.25rem;
    }
    .how-it-works .max-width-300 {
        display: none;
    }
    .how-it-works .min-width-150 {
        min-width: 60px;
    }
    .step-number {
        width: 40px;
        height: 40px;
        margin: 0;
        font-size: 1.25rem;
    }
    .how-it-works .flex.mb-20 {
        margin-bottom: 10px;
    }
    .how-it-works p {
        margin-top: 5px;
    }
    .how-it-works h3.mb-30 {
        margin-bottom: 10px;
    }
    .how-it-works .btn {
        margin-bottom: 30px;
    }
    #plans h2.mb-40 {
        margin-bottom: 30px;
    }
    .plan.pt-80:first-child {
        padding-top: 30px;
    }
    .plan.p-50 {
        padding: 80px 30px 30px 30px;
    }
    .contact-info {
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 716px) {
    #form {
        margin-bottom: 100px;
    }
    #form h2 {
        margin-right: 0;
    }
    .contact-info.pl-50 {
        max-width: 100%;
        border-left: 0;
        padding-left: 0;
        text-align: center;
    }
    .contact-info h4.align-left {
        text-align: center;
    }
}
@media screen and (max-width: 480px) {
    p.small {
        font-size: 0.5rem;
        line-height: 0.75rem;
    }
    .plan.min-width-450 {
        min-width: 200px;
    }
    .plan-price {
        padding: 10px 0;
        line-height: 1.75rem;
    }
    .plan-price.plan-2 {
        font-size: 2.5rem;
    }
    .plan-price.plan-2 sup,
    .plan-price.plan-2 span {
        font-size: 1.25rem;
    }
    .features li,
    .plan li {
        font-size: 0.9375rem;
        line-height: 1rem;
    }
    .plan li {
        font-size: 0.8125rem;
    }
    .metrics.content {
        width: calc(100% - 20px);
        margin: 0 10px;
    }
    .metric-row {
        gap: 0;
    }
    .metrics h2.mb-20 {
        margin-bottom: 40px;
    }
    .how-it-works h3 {
        font-size: 1rem;
    }
}
