:root {
    --white: #fff;
    --off-white: #f7f7f7;
    --off-black: #131313;
    --sky-blue: #0456b4;
    --medium-blue: #0569af;
    --dark-blue: #043b7a;
    --light-grey: #bfbfbf;
    --medium-grey: #666;
    --dark-grey: #878b92
}

* {
    --responsive: calc((var(--min-font)*1px) + (var(--max-font) - var(--min-font))*((100vw - 420px)/(1200 - 420)))
}

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

html {
    font-size: 16px
}

body {
    color: #333;
    font-family: 'Roboto', sans-serif
}

em,
.emphasized {
    color: var(--medium-blue)
}

.page-header {
    grid-area: header;
    box-shadow: 5px 7px 7px #0002
}

.page-header-image {
    flex-wrap: wrap;
    align-items: center;
    height: 500px;
    display: flex
}

.hero {
    color: var(--white);
    background-position: 50%;
    background-size: cover;
    padding: 0
}

.hero-text {
    width: 100%;
    padding: 2rem 2rem 2rem 5rem;
    overflow: hidden
}

.hero-text h1 {
    --max-font: 50;
    --min-font: 30;
    font-family: 'Roboto', sans-serif;
    font-size: var(--responsive);
    margin-bottom: 2rem;
    font-weight: 700
}

.hero p {
    color: var(--off-white)
}

.page-main {
    grid-area: main;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr minmax(0, 100%) 1fr;
    display: grid;
    overflow-x: hidden
}

.page-content {
    grid-area: 1/2/1/3
}

.page-footer {
    color: #ffffffe0;
    background-color: #031b2e;
    grid-area: 2/1/2/4;
    display: grid
}

#page-contact,
.page-title-image {
    background-image: linear-gradient(#05060266, #000c), url(/assets/images/website/title-contact-us.webp);
    background-position: 50%;
    background-size: cover
}

.page-title-image .hero-text strong h1,
.page-title-image .hero-text h2 {
    color: #fff
}

.image-center {
    margin: auto;
    display: block
}

strong {
    font-weight: 700
}

section {
    padding-top: 3rem;
    padding-bottom: 3rem
}

section .container,
.terms-container {
    max-width: 1152px;
    margin: auto
}

.terms-container {
    text-align: justify
}

section.contact {
    background-color: var(--medium-blue);
    color: var(--white)
}

.bg-grey {
    background-color: var(--off-white)
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.125rem;
    font-weight: 400
}

.section-title a {
    color: #000
}

.contact .section-title {
    margin-bottom: 1rem
}

.contact .subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300
}

.section-row,
.row {
    flex-wrap: wrap;
    padding-top: 20px;
    display: flex
}

.w3-container .row {
    padding-top: 0
}

.justified {
    justify-content: center
}

.just-end {
    justify-content: end
}

.just-between {
    justify-content: space-between
}

.form-field {
    margin-bottom: 1rem;
    display: block
}

.form-field label,
.form-field input,
.form-field,
.form-field select,
.form-field textarea {
    width: 100%;
    margin: 0 auto;
    display: block
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: .75rem .5rem
}

.form-field.wider input,
.form-field.wider label,
.full-wide {
    width: 100%
}

.form-field label {
    margin-bottom: .75rem
}

.form-submit {
    text-align: center;
    display: block
}

input,
textarea {
    background-color: #f8f8f8;
    border: 0;
    border-bottom: 2px solid #ccc;
    border-radius: 5px 5px 0 0;
    width: 250px;
    padding: .25rem;
    font-size: 1rem
}

.column {
    padding: .75rem
}

.features .card {
    width: calc(33.33% - 40px);
    padding: 0
}

.card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-bottom: 5px solid var(--medium-blue);
    border-radius: 5px;
    margin: 20px;
    padding: 2rem
}

.card-img {
    height: 200px;
    margin-bottom: 1rem;
    overflow-y: hidden
}

.card-img img {
    object-fit: contain;
    width: 100%
}

.card .card-text {
    padding: .5rem 1rem 1rem
}

.is-half {
    width: 50%
}

.is-one-third {
    width: 33.3333%
}

article {
    -webkit-columns: 2 200px;
    -moz-columns: 2 200px;
    columns: 2 200px;
    -webkit-column-gap: 2em;
    -moz-column-gap: 2em;
    -webkit-column-rule: 1px dotted #ddd;
    -moz-column-rule: 1px dotted #ddd;
    column-rule: 1px dotted #ddd;
    column-gap: 2em;
    font-size: 14px
}

article p:first-child {
    margin-top: 0
}

.article-image {
    max-width: 60%;
    height: auto;
    margin: auto;
    display: block
}

.dark .btn {
    color: var(--off-white);
    border-color: var(--off-white);
    margin-top: 1rem
}

.btn {
    color: var(--sky-blue);
    border: 2px solid var(--sky-blue);
    cursor: pointer;
    background-color: #0000;
    border-radius: 5px;
    padding: .75rem;
    font-weight: 500;
    transition: all .25s;
    display: inline-block
}

.btn:hover {
    color: var(--white);
    background-color: var(--sky-blue);
    cursor: pointer
}

.btn-primary {
    color: var(--white);
    background-color: var(--sky-blue)
}

.btn-primary:hover {
    color: var(--white);
    background-color: #0000
}

.blue-button {
    background-color: var(--sky-blue);
    color: var(--white);
    border: 2px solid var(--sky-blue);
    border-radius: 5px;
    width: fit-content;
    padding: .75rem;
    transition: all .25s
}

.blue-button:hover {
    color: var(--sky-blue);
    cursor: pointer;
    background-color: #0000
}

.arrowbtn {
    border: 2px solid var(--sky-blue);
    cursor: pointer;
    border-radius: 5px;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s;
    display: flex
}

.arrowbtn:hover {
    color: var(--white);
    background-color: var(--sky-blue);
    cursor: pointer
}

.arrowbtn-primary {
    color: var(--white);
    background-color: var(--sky-blue)
}

.arrowbtn-primary:hover {
    color: var(--sky-blue);
    background-color: #0000
}

.arrowbtn span {
    padding: 8px
}

.arrowbtn span.icon-left-arrow {
    background-color: var(--white);
    padding: 20px;
    mask: url(/assets/images/cart/arrow-left.svg) 55% no-repeat
}

.arrowbtn span.icon-right-arrow {
    background-color: var(--white);
    padding: 20px;
    mask: url(/assets/images/cart/arrow-right.svg) 55% no-repeat
}

.a-btn-text-l {
    border-left: 1px solid #1e4d76;
    align-items: center;
    display: flex
}

.a-btn-text-r {
    border-right: 1px solid #1e4d76;
    align-items: center;
    display: flex
}

.arrowbtn-primary:hover span.icon-left-arrow,
.arrowbtn-primary:hover span.icon-right-arrow {
    background-color: var(--sky-blue)
}

.product-display {
    background-color: var(--dark-blue)
}

.product-display .title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 600
}

.product-display .subtitle {
    color: var(--off-white);
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 400
}

.product-display p {
    color: var(--white)
}

.product-display .price {
    color: var(--off-white);
    margin: 1.5rem 0 1rem;
    font-size: 2.25rem
}

.aboutus {
    text-align: center
}

.section-subtitle {
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 400
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block
}

.benefits .material-icons {
    color: var(--medium-blue);
    font-size: 3rem
}

.material-icons {
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    -webkit-font-smoothing: antialiased;
    direction: ltr;
    font-family: Material Icons;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    display: inline-block
}

.benefits .title {
    margin-top: 1rem;
    position: relative
}

.card .title {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 500
}

.benefits .card {
    background-color: #fafafa;
    width: calc(50% - 40px)
}

p {
    color: var(--medium-grey);
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3rem
}

.cta {
    text-align: center
}

.cta .section-title {
    color: var(--white);
    font-size: 2rem
}

.cta .subtitle {
    color: var(--white);
    margin: 2rem 0;
    font-size: 1.125rem
}

.img-rounded {
    border-radius: 10px
}

.pl-3 {
    padding-left: 3rem
}

.call-us a {
    font-size: 1.125rem;
    font-weight: 500
}

.call-us .material-icons {
    margin-right: 5px;
    font-size: 1rem;
    position: relative;
    top: 2px
}

.testimonials {
    background-color: var(--white)
}

.testimonials .quote {
    text-align: justify;
    margin-bottom: 1.75rem;
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.75rem
}

.testimonials .meta-wrap {
    align-items: center;
    gap: 12px
}

.testimonials .meta .name {
    color: #333;
    margin-bottom: .25rem
}

.testimonials .meta .description {
    margin-bottom: .1rem;
    font-size: .875rem
}

.testimonials .meta .description span {
    display: block
}

.tns-nav {
    text-align: center;
    margin: 50px 10px auto
}

.tns-nav>[aria-controls] {
    background: var(--light-grey);
    border: 0;
    border-radius: 50%;
    width: 9px;
    height: 9px;
    margin: 0 5px;
    padding: 0
}

.tns-nav>.tns-nav-active {
    background: var(--sky-blue)
}

.no-pad {
    padding: 0
}
.article-pad {
    padding-left: 20px;
    padding-right: 20px;
}

@media screen and (width<=1190px) {

    section .container,
    .terms-container {
        padding: 0 1.5rem
    }
}

@media screen and (width<=960px) {

    .is-half,
    .is-one-third,
    .is-one-third.card {
        width: 100%
    }

    section .container,
    .terms-container {
        padding: 0 1.5rem
    }
}

.modal {
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background-color: #00000080;
    width: 100%;
    height: 100%;
    transition: visibility 0s linear .25s, opacity .25s, transform .25s;
    position: fixed;
    top: 0;
    left: 0;
    transform: scale(1.1)
}

.modal-content {
    background-color: #fff;
    border-radius: .5rem;
    width: 60rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.modal .form-field label,
.modal .form-field input {
    width: 100%
}

.modal-row {
    flex-wrap: wrap;
    display: flex
}

@media screen and (width<=960px) {
    .modal-content {
        width: 48rem
    }
}

@media screen and (width<=768px) {
    .article-image {
        max-width: 100%
    }

    .modal-content {
        width: 24rem
    }

    .xs-hidden {
        display: none
    }
}

.modal-content .bg-img {
    background: url(../images/website/vehicle-tracker.webp) 50%/cover;
    height: 100%
}

.modal-form {
    justify-content: space-around;
    align-items: center;
    padding: 1.5rem
}

.close-button {
    float: right;
    text-align: center;
    cursor: pointer;
    opacity: .8;
    width: 1.5rem;
    line-height: 1.5rem;
    transition: transform .25s
}

.close-button:hover {
    opacity: 1;
    transition: transform .25s;
    transform: scale(1.25)
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transition: visibility linear, opacity .25s, transform .25s;
    transform: scale(1)
}

.lead-gen-modal .form-wrap {
    width: 80%;
    margin-top: 2rem
}

.lead-gen-modal .form-field-last {
    margin-bottom: 2rem
}