*, ::after, ::before {
    box-sizing: border-box;
}

article, footer, header, main, nav, section {
    display: block;
}

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

html {
    font-size: 14px;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

h1, h2, h3, h4 {
    margin-top: 0;
    margin-bottom: .5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

b, strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

    a:hover {
        color: #0056b3;
        text-decoration: underline;
    }

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

button {
    border-radius: 0;
}

    button:focus {
        outline: 1px dotted;
        outline: 5px auto -webkit-focus-ring-color;
    }

button, input, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button, input {
    overflow: visible;
}

button {
    text-transform: none;
}

[type=submit], button, html [type=button] {
    -webkit-appearance: button;
}

    [type=button]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
        padding: 0;
        border-style: none;
    }

textarea {
    overflow: auto;
    resize: vertical;
}

.h1, .h3, .h4, .h5, .h6, h1, h2, h3, h4 {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

.h1, h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

.h3, h3 {
    font-size: 1.75rem;
}

.h4, h4 {
    font-size: 1.5rem;
}

.h5 {
    font-size: 1.25rem;
}

.h6 {
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

small {
    font-size: 80%;
    font-weight: 400;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

    .list-inline-item:not(:last-child) {
        margin-right: .5rem;
    }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-8, .col-lg-9, .col-md-12, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width:768px) {
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width:992px) {
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .offset-lg-1 {
        margin-left: 8.333333%;
    }
}

.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media screen and (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none;
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media screen and (prefers-reduced-motion:reduce) {
    .btn {
        transition: none;
    }
}

.btn:focus, .btn:hover {
    text-decoration: none;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}

.btn:disabled {
    opacity: .65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.collapse:not(.show) {
    display: none;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
}

    .nav-link:focus, .nav-link:hover {
        text-decoration: none;
    }

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
}

    .navbar > .container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

    .navbar-brand:focus, .navbar-brand:hover {
        text-decoration: none;
    }

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
    }

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
}

    .navbar-toggler:focus, .navbar-toggler:hover {
        text-decoration: none;
    }

    .navbar-toggler:not(:disabled):not(.disabled) {
        cursor: pointer;
    }

@media (max-width:991.98px) {
    .navbar-expand-lg > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width:992px) {
    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

        .navbar-expand-lg .navbar-nav {
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-expand-lg .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-expand-lg > .container {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        }

        .navbar-expand-lg .navbar-collapse {
            display: -ms-flexbox !important;
            display: flex !important;
            -ms-flex-preferred-size: auto;
            flex-basis: auto;
        }

        .navbar-expand-lg .navbar-toggler {
            display: none;
        }
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

@media (min-width:992px) {
    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

@media (min-width:576px) {
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
}

@media (min-width:992px) {
    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mx-auto {
    margin-right: auto !important;
}

.ml-auto, .mx-auto {
    margin-left: auto !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width:768px) {
    .text-md-left {
        text-align: left !important;
    }
}

.text-uppercase {
    text-transform: uppercase !important;
}

@media print {
    *, ::after, ::before {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a:not(.btn) {
        text-decoration: underline;
    }

    img {
        page-break-inside: avoid;
    }

    h2, h3, p {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    body {
        min-width: 992px !important;
    }

    .container {
        min-width: 992px !important;
    }

    .navbar {
        display: none;
    }
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/vendor/icon-awesome/css/font-awesome.min.css */
.fa {
    display: inline-block;
}

.fa {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-map-marker:before {
    content: "\f041";
}

.fa-phone:before {
    content: "\f095";
}

.fa-globe:before {
    content: "\f0ac";
}

.fa-angle-right:before {
    content: "\f105";
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/vendor/icon-line/css/simple-line-icons.css */
.icon-wrench, .icon-earphones-alt, .icon-refresh {
    font-family: 'simple-line-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .icon-wrench:before {
        content: "\e052";
    }

    .icon-earphones-alt:before {
        content: "\e03c";
    }

    .icon-refresh:before {
        content: "\e098";
    }
/*! CSS Used from: https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/style.css */
[class^="icon-communication"]:before {
    font-family: "communication-48-x-48" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-communication-108:before {
    content: "\e013";
}

[class^="icon-education"]:before {
    font-family: "education-48" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-education-087:before {
    content: "%";
}

[class^="icon-finance"]:before {
    font-family: "finance" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-finance-223:before {
    content: "H";
}

.icon-finance-114:before {
    content: "\e044";
}

[class^="icon-real-estate"]:before {
    font-family: "real-estate" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-real-estate-057:before {
    content: "J";
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/vendor/icon-hs/style.css */
.hs-icon {
    font-family: 'hs-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hs-icon-arrow-top:before {
    content: "\e903";
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/vendor/animate.css */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/vendor/hs-megamenu/src/hs.megamenu.css */
.hs-menu-initialized {
    position: relative;
    z-index: 10;
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/vendor/hamburgers/hamburgers.min.css */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 15px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
}

    .hamburger:hover {
        opacity: .7;
    }

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

    .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
        position: absolute;
        width: 40px;
        height: 4px;
        transition-timing-function: ease;
        transition-duration: .15s;
        transition-property: transform;
        border-radius: 4px;
        background-color: #000;
    }

        .hamburger-inner:after, .hamburger-inner:before {
            display: block;
            content: "";
        }

        .hamburger-inner:before {
            top: -10px;
        }

        .hamburger-inner:after {
            bottom: -10px;
        }

.hamburger--slider .hamburger-inner {
    top: 2px;
}

    .hamburger--slider .hamburger-inner:before {
        top: 10px;
        transition-timing-function: ease;
        transition-duration: .15s;
        transition-property: transform,opacity;
    }

    .hamburger--slider .hamburger-inner:after {
        top: 20px;
    }
/*! CSS Used from: https://www.subcheckplus.com/static/assets/vendor/revolution-slider/revolution/css/settings.css */
.rev_slider_wrapper {
    position: relative;
    z-index: 0;
    width: 100%;
}

.rev_slider {
    position: relative;
    overflow: visible;
}

    .rev_slider a {
        box-shadow: none;
    }

    .rev_slider img, .tp-simpleresponsive img {
        max-width: none !important;
        transition: none;
        margin: 0;
        padding: 0;
        border: none;
    }

    .rev_slider > ul, .rev_slider > ul > li, .rev_slider > ul > li:before, .tp-revslider-mainul > li, .tp-revslider-mainul > li:before, .tp-simpleresponsive > ul, .tp-simpleresponsive > ul > li, .tp-simpleresponsive > ul > li:before {
        list-style: none !important;
        position: absolute;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: visible;
        overflow-y: visible;
        background-image: none;
        background-position: 0 0;
        text-indent: 0;
        top: 0;
        left: 0;
    }

        .rev_slider > ul > li, .rev_slider > ul > li:before, .tp-revslider-mainul > li, .tp-revslider-mainul > li:before, .tp-simpleresponsive > ul > li, .tp-simpleresponsive > ul > li:before {
            visibility: hidden;
        }

.tp-revslider-mainul, .tp-revslider-slidesli {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.fullscreen-container {
    padding: 0;
    position: relative;
}

.rev_slider li.tp-revslider-slidesli {
    position: absolute !important;
}

.rev_slider .tp-caption {
    position: relative;
    visibility: hidden;
    white-space: nowrap;
    display: block;
    -webkit-font-smoothing: antialiased !important;
    z-index: 1;
}

.rev_slider .tp-caption, .tp-simpleresponsive img {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.rev_slider .tp-mask-wrap .tp-caption, .rev_slider .tp-mask-wrap :last-child {
    margin-bottom: 0;
}

.tp-parallax-wrap {
    transform-style: preserve-3d;
}

.rev-btn, .rev-btn:visited {
    outline: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    line-height: 44px;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 35px;
    box-sizing: border-box;
    font-family: Roboto,sans-serif;
    cursor: pointer;
}

.tp-bullet {
    background: #fff;
}

.tp-bannertimer {
    visibility: hidden;
    width: 100%;
    height: 5px;
    background: #000;
    background: rgba(0,0,0,.15);
    position: absolute;
    z-index: 200;
    top: 0;
}

    .tp-bannertimer.tp-bottom {
        top: auto;
        bottom: 0 !important;
        height: 5px;
    }

.tp-shape {
    width: 100%;
    height: 100%;
}

.tp-loader {
    top: 50%;
    left: 50%;
    z-index: 10000;
    position: absolute;
}

.tp-bullets {
    position: absolute;
    display: block;
    z-index: 1000;
    top: 0;
    left: 0;
}

.tp-bullet {
    width: 15px;
    height: 15px;
    position: absolute;
    background: rgba(255,255,255,.3);
    cursor: pointer;
}

    .tp-bullet.selected, .tp-bullet:hover {
        background: #fff;
    }

.tp-kbimg-wrap:after, .tp-kbimg-wrap:before {
    height: 500%;
    width: 500%;
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/vendor/revolution-slider/revolution/css/layers.css */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.rev_slider {
    overflow: hidden;
}

.rev_slider {
    overflow: hidden;
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/css/unify-core.css */
body {
    font-weight: 400;
    font-size: 1rem;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #555;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga", "kern";
    text-rendering: optimizelegibility;
    background-color: #fff;
}

a {
    color: #166AA9;
    outline: none;
}

    a:focus, a:hover {
        color: #66ab27;
    }

.nav-link {
    color: #555;
}

    .nav-link:focus, .nav-link:hover {
        color: #555;
    }

.h1, .h3, .h4, .h5, .h6, h1, h2, h3, h4 {
    line-height: 1.4;
}

::-moz-selection {
    color: #fff;
    background-color: #166AA9;
}

::selection {
    color: #fff;
    background-color: #166AA9;
}

.g-bg-primary ::-moz-selection {
    color: #166AA9;
    background-color: #fff;
}

.g-bg-primary ::selection {
    color: #166AA9;
    background-color: #fff;
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/css/unify-components.css */
[class*="u-go-to"] {
    display: none;
}

.u-go-to-v1 {
    width: 3.57143rem;
    height: 3.57143rem;
    display: block;
    background-color: rgba(255, 255, 255, 0.7);
    color: #555;
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    transition: .3s ease-out;
    z-index: 11;
}

    .u-go-to-v1 i {
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .u-go-to-v1:hover, .u-go-to-v1:focus:hover {
        text-decoration: none;
        color: #fff;
        background-color: #166AA9;
    }

    .u-go-to-v1:focus {
        text-decoration: none;
        color: #555;
        background-color: rgba(255, 255, 255, 0.7);
    }

@media (max-width: 575px) {
    .u-go-to-v1 {
        -ms-transform: scale(0.8, 0.8);
        transform: scale(0.8, 0.8);
    }
}

[class*="u-go-to"] {
    display: none;
}

[class*="u-go-to"] {
    display: none;
}

.u-header {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    font-size: 0.92857rem;
    z-index: 501;
}

.u-header--sticky-top {
    position: fixed;
}

.u-header--sticky-top {
    bottom: auto;
    top: 0;
}

.u-header__section {
    position: relative;
    z-index: 1;
}

    .u-header__section:nth-child(1) {
        z-index: 5;
    }

.u-header__section--dark .navbar-brand, .u-header__section--dark .navbar-toggler {
    color: #fff;
}

    .u-header__section--dark .navbar-brand:focus, .u-header__section--dark .navbar-brand:hover, .u-header__section--dark .navbar-toggler:focus, .u-header__section--dark .navbar-toggler:hover {
        color: #fff;
    }

.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

    .u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus, .u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover {
        color: #fff;
    }

.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link {
    color: #fff;
}

.u-header__section--dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar > .container {
    position: relative;
}

@media all and (max-width: 991px) {
    .navbar-expand-lg > .container {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-collapse {
        width: 100%;
        -ms-flex-order: 10;
        order: 10;
    }
}

.btn {
    position: relative;
    transition: .2s ease;
    cursor: pointer;
}

    .btn:focus, .btn:active:focus {
        outline: 0 none;
        box-shadow: none;
    }

.btn-xl {
    line-height: 1.4;
    padding: 0.92857rem 1.85714rem;
    font-size: 1.28571rem;
}

.u-btn-primary {
    color: #fff;
    background-color: #166AA9;
}

    .u-btn-primary:hover {
        border-color: #8cd54a;
        background-color: #8cd54a;
    }

    .u-btn-primary:hover, .u-btn-primary:focus {
        color: #fff;
    }

.u-btn-outline-primary {
    color: #96d1fd;
    border-color: #96d1fd;
    background-color: transparent;
}

    .u-btn-outline-primary:focus {
        color: #fff;
        background-color: #166AA9;
    }

    .u-btn-outline-primary:hover {
        color: #fff;
        background-color: #166AA9;
    }

.u-icon-v3 {
    position: relative;
    display: inline-block;
    text-align: center;
    transition: all .2s ease-in-out;
}

    .u-icon-v3:hover {
        text-decoration: none;
    }

    .u-icon-v3::before {
        display: block;
    }

    .u-icon-v3 > i {
        position: relative;
        top: 50%;
        display: block;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 2;
    }

.u-icon-v3 {
    width: 3.92857rem;
    height: 3.92857rem;
    font-size: 1.57143rem;
}

    .u-icon-v3.u-icon-size--xs {
        width: 2.14286rem;
        height: 2.14286rem;
        font-size: 0.92857rem;
    }

.u-icon-v3 {
    width: 3.92857rem;
    height: 3.92857rem;
    font-size: 1.57143rem;
}

    .u-icon-v3.u-icon-size--xs {
        width: 2.14286rem;
        height: 2.14286rem;
        font-size: 0.92857rem;
    }

.u-icon-v3 {
    background-color: #eee;
}

.u-icon-v3 {
    width: 3.92857rem;
    height: 3.92857rem;
    font-size: 1.57143rem;
}

    .u-icon-v3.u-icon-size--xs {
        width: 2.14286rem;
        height: 2.14286rem;
        font-size: 0.92857rem;
    }

.u-icon-v3 {
    width: 3.92857rem;
    height: 3.92857rem;
    font-size: 1.57143rem;
}

    .u-icon-v3.u-icon-size--xs {
        width: 2.14286rem;
        height: 2.14286rem;
        font-size: 0.92857rem;
    }

.u-shadow-v25 {
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.07);
}

.g-color-primary:focus {
    color: #166AA9;
}

.g-brd-primary--focus:focus {
    border-color: #166AA9 !important;
}

.u-heading-v2-3--bottom::after {
    content: "";
    display: inline-block;
    border-top-style: solid;
    border-color: inherit;
}

.u-heading-v2-3--bottom::after {
    width: 5rem;
    border-top-width: 1px;
}

.u-heading-v2-3--bottom::after {
    margin-top: 1.07143rem;
}

.u-list-inline {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-item > a, .nav-item > .nav-link {
    transition-property: color, background-color, border-color;
    transition-duration: .2s;
    transition-timing-function: ease-in;
}

.hamburger-inner::before, .hamburger-inner::after {
    background-color: inherit;
}

.u-outer-spaces-helper {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    overflow: hidden;
}

    .u-outer-spaces-helper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100vh;
        background-color: #f7f7f7;
        background-position: center;
        background-repeat: repeat;
    }

.form-control {
    border-color: #ccc;
    height: auto;
}

    .form-control, .form-control:focus {
        color: #555;
    }

        .form-control:focus {
            border-color: #166AA9;
            box-shadow: none;
        }

        .form-control::-webkit-input-placeholder {
            color: inherit;
            opacity: .5;
        }

        .form-control:-ms-input-placeholder {
            color: inherit;
            opacity: .5;
        }

        .form-control::placeholder {
            color: inherit;
            opacity: .5;
        }

.hamburger {
    padding: 10px;
}

.hamburger-box {
    width: 37px;
    height: 25px;
}

.hamburger-inner {
    margin-top: 1px;
}

    .hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
        width: 100%;
        height: 1px;
        border-radius: 0;
    }

.u-header__section--dark .hamburger-inner, .u-header__section--dark .hamburger-inner::after, .u-header__section--dark .hamburger-inner::before {
    background: #fff;
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/css/unify-globals.css */
.g-bg-primary {
    background-color: #166AA9 !important;
}

.g-bg-black-opacity-0_7 {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.g-bg-black-opacity-0_9 {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.g-bg-white {
    background-color: #fff !important;
}

.g-bg-white-opacity-0_1 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.g-bg-gray-dark-v1 {
    background-color: #111 !important;
}

.g-bg-gray-light-v5 {
    background-color: #f7f7f7 !important;
}

.g-bg-no-repeat {
    background-repeat: no-repeat;
}

.g-brd-none {
    border: none !important;
}

.g-brd-bottom {
    border-bottom: solid 1px transparent !important;
}

@media (min-width: 768px) {
    .g-brd-around--md {
        border: solid 1px transparent !important;
    }
}

.g-rounded-5 {
    border-radius: 5px !important;
}

.g-rounded-50 {
    border-radius: 50px !important;
}

.g-brd-primary {
    border-color: #166AA9 !important;
}

.g-brd-white-opacity-0_1 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.g-brd-white-opacity-0_8 {
    border-color: rgba(255, 255, 255, 0.8) !important;
}

.g-brd-gray-dark-v5 {
    border-color: #999 !important;
}

.g-brd-gray-light-v3 {
    border-color: #ddd !important;
}

.g-brd-gray-light-v4 {
    border-color: #eee !important;
}

.g-font-size-default {
    font-size: 1rem !important;
}

.g-font-size-10 {
    font-size: 0.71429rem !important;
}

.g-font-size-12 {
    font-size: 0.85714rem !important;
}

.g-font-size-13 {
    font-size: 0.92857rem !important;
}

.g-font-size-16 {
    font-size: 1.14286rem !important;
}

.g-font-size-40 {
    font-size: 2.85714rem !important;
}

.g-font-size-50 {
    font-size: 3.57143rem !important;
}

.g-font-size-55 {
    font-size: 3.92857rem !important;
}

.g-font-weight-300 {
    font-weight: 300 !important;
}

.g-font-weight-600 {
    font-weight: 600 !important;
}

.g-font-weight-700 {
    font-weight: 700 !important;
}

.g-line-height-0_7 {
    line-height: .7 !important;
}

.g-line-height-1 {
    line-height: 1 !important;
}

.g-font-style-normal {
    font-style: normal;
}

.g-pos-rel {
    position: relative !important;
}

.g-pos-abs {
    position: absolute !important;
}

.g-top-minus-3 {
    top: -0.21429rem !important;
}

.g-left-0 {
    left: 0;
}

.g-right-0 {
    right: 0 !important;
}

.g-bottom-0 {
    bottom: 0;
}

.g-absolute-centered--y {
    position: absolute !important;
    top: 50% !important;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
}

.g-valign-top {
    vertical-align: top !important;
}

.g-valign-middle {
    vertical-align: middle !important;
}

.g-overflow-hidden {
    overflow: hidden !important;
}

[class*="g-transition"] {
    transition-property: all;
    transition-timing-function: ease;
    transition-delay: 0s;
}

    [class*="g-transition"]::before, [class*="g-transition"]::after {
        transition-property: all;
        transition-timing-function: ease;
        transition-delay: 0s;
    }

.g-transition-0_3 {
    transition-duration: .3s;
}

    .g-transition-0_3::before, .g-transition-0_3::after {
        transition-duration: .3s;
    }

.g-resize-none {
    resize: none;
}

.g-color-primary {
    color: #166AA9 !important;
}

.g-color-black {
    color: #000 !important;
}

.g-color-white {
    color: #fff !important;
}

.g-color-white--hover:hover {
    color: #fff !important;
}

.g-color-white-opacity-0_6 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.g-color-white-opacity-0_8 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.g-color-gray-dark-v2 {
    color: #333 !important;
}

.g-color-gray-dark-v4 {
    color: #777 !important;
}

.g-color-gray-dark-v5 {
    color: #999 !important;
}

@media (min-width: 768px) {
    .g-width-60x--md {
        width: 60% !important;
    }

    .g-width-80x--md {
        width: 80% !important;
    }
}

.g-width-35 {
    width: 35px !important;
}

.g-width-40 {
    width: 40px !important;
}

.g-width-150 {
    width: 150px !important;
}

@media (min-width: 768px) {
    .g-width-60x--md {
        width: 60% !important;
    }

    .g-width-80x--md {
        width: 80% !important;
    }
}

.g-height-2 {
    height: 2px;
}

@media (min-width: 0) {
    .g-mb-0 {
        margin-bottom: 0 !important;
    }

    .g-my-15 {
        margin-top: 1.07143rem !important;
        margin-bottom: 1.07143rem !important;
    }

    .g-mt-minus-10 {
        margin-top: -0.71429rem !important;
    }

    .g-mt-minus-10 {
        margin-top: -0.71429rem !important;
    }

    .g-mb-5 {
        margin-bottom: 0.35714rem !important;
    }

    .g-mb-10 {
        margin-bottom: 0.71429rem !important;
    }

    .g-mb-15 {
        margin-bottom: 1.07143rem !important;
    }

    .g-mb-20 {
        margin-bottom: 1.42857rem !important;
    }

    .g-mb-10 {
        margin-bottom: 0.71429rem !important;
    }

    .g-mb-15 {
        margin-bottom: 1.07143rem !important;
    }

    .g-mb-20 {
        margin-bottom: 1.42857rem !important;
    }

    .g-mb-30 {
        margin-bottom: 2.14286rem !important;
    }

    .g-mb-40 {
        margin-bottom: 2.85714rem !important;
    }

    .g-mb-50 {
        margin-bottom: 3.57143rem !important;
    }

    .g-mb-60 {
        margin-bottom: 4.28571rem !important;
    }

    .g-mb-80 {
        margin-bottom: 5.71429rem !important;
    }

    .g-mb-100 {
        margin-bottom: 7.14286rem !important;
    }

    .g-mr-10 {
        margin-right: 0.71429rem !important;
    }

    .g-mr-10 {
        margin-right: 0.71429rem !important;
    }
}

@media (min-width: 768px) {
    .g-mb-0--md {
        margin-bottom: 0 !important;
    }

    .g-mr-20--md {
        margin-right: 1.42857rem !important;
    }
}

@media (min-width: 992px) {
    .g-mb-0--lg {
        margin-bottom: 0 !important;
    }

    .g-mx-10--lg {
        margin-left: 0.71429rem !important;
        margin-right: 0.71429rem !important;
    }

    .g-mx-10--lg {
        margin-left: 0.71429rem !important;
        margin-right: 0.71429rem !important;
    }

    .g-mb-30--lg {
        margin-bottom: 2.14286rem !important;
    }

    .g-mr-40--lg {
        margin-right: 2.85714rem !important;
    }
}

@media (min-width: 1200px) {
    .g-mx-15--xl {
        margin-left: 1.07143rem !important;
        margin-right: 1.07143rem !important;
    }
}

@media (min-width: 768px) {
    .g-mb-0--md {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 0) {
    .g-pa-0 {
        padding: 0 !important;
    }

    .g-px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .g-py-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .g-pa-10 {
        padding: 0.71429rem !important;
    }

    .g-px-15 {
        padding-left: 1.07143rem !important;
        padding-right: 1.07143rem !important;
    }

    .g-px-15 {
        padding-left: 1.07143rem !important;
        padding-right: 1.07143rem !important;
    }

    .g-px-20 {
        padding-left: 1.42857rem !important;
        padding-right: 1.42857rem !important;
    }

    .g-px-30 {
        padding-left: 2.14286rem !important;
        padding-right: 2.14286rem !important;
    }

    .g-py-7 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .g-py-8 {
        padding-top: 0.57143rem !important;
        padding-bottom: 0.57143rem !important;
    }

    .g-py-10 {
        padding-top: 0.71429rem !important;
        padding-bottom: 0.71429rem !important;
    }

    .g-py-12 {
        padding-top: 0.85714rem !important;
        padding-bottom: 0.85714rem !important;
    }

    .g-py-13 {
        padding-top: 0.92857rem !important;
        padding-bottom: 0.92857rem !important;
    }

    .g-py-10 {
        padding-top: 0.71429rem !important;
        padding-bottom: 0.71429rem !important;
    }

    .g-py-20 {
        padding-top: 1.42857rem !important;
        padding-bottom: 1.42857rem !important;
    }

    .g-py-50 {
        padding-top: 3.57143rem !important;
        padding-bottom: 3.57143rem !important;
    }

    .g-py-60 {
        padding-top: 4.28571rem !important;
        padding-bottom: 4.28571rem !important;
    }

    .g-pt-10 {
        padding-top: 0.71429rem !important;
    }

    .g-pt-10 {
        padding-top: 0.71429rem !important;
    }

    .g-pt-20 {
        padding-top: 1.42857rem !important;
    }

    .g-pt-100 {
        padding-top: 7.14286rem !important;
    }

    .g-pr-20 {
        padding-right: 1.42857rem !important;
    }

    .g-pb-40 {
        padding-bottom: 2.85714rem !important;
    }

    .g-pb-70 {
        padding-bottom: 5rem !important;
    }

    .g-pl-30 {
        padding-left: 2.14286rem !important;
    }
}

@media (min-width: 992px) {
    .g-pl-0--lg {
        padding-left: 0 !important;
    }

    .g-px-30--lg {
        padding-left: 2.14286rem !important;
        padding-right: 2.14286rem !important;
    }

    .g-py-40--lg {
        padding-top: 2.85714rem !important;
        padding-bottom: 2.85714rem !important;
    }

    .g-pt-5--lg {
        padding-top: 0.35714rem !important;
    }

    .g-pl-0--lg {
        padding-left: 0px !important;
    }
}

@media (max-width: 991px) {
    .g-hidden-md-down {
        display: none !important;
    }
}
/*! CSS Used from: https://www.subcheckplus.com/static/assets/css/custom.css */
@media (max-width:600px) {
    .hide-mobile {
        display: none;
    }

    .u-btn-outline-primary:focus {
        color: #fff;
        background-color: #0a6aa9;
    }

    .u-btn-outline-primary:hover {
        color: #fff;
        background-color: #0a6aa9;
    }

    .g-bg-primary {
        background-color: #166AA9 !important;
    }

    .g-brd-primary {
        border-color: #166AA9 !important;
    }

    .g-color-primary {
        color: #166AA9 !important;
    }

    .u-btn-primary {
        color: #fff;
        background-color: #166AA9;
    }

        .u-btn-primary:hover {
            border-color: #519ad0;
            background-color: #519ad0;
        }

    .u-go-to-v1:hover, .u-go-to-v1:focus:hover {
        text-decoration: none;
        color: #fff;
        background-color: #166AA9;
    }
}
/*! CSS Used fontfaces */
@font-face {
    font-family: FontAwesome;
    src: url(https://www.subcheckplus.com/static/assets/vendor/icon-awesome/fonts/fontawesome-webfont.eot?v=4.7.0);
    src: url(https://www.subcheckplus.com/static/assets/vendor/icon-awesome/fonts/fontawesome-webfont.eot#iefix&v=4.7.0) format('embedded-opentype'),url(https://www.subcheckplus.com/static/assets/vendor/icon-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(https://www.subcheckplus.com/static/assets/vendor/icon-awesome/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(https://www.subcheckplus.com/static/assets/vendor/icon-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(https://www.subcheckplus.com/static/assets/vendor/icon-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'simple-line-icons';
    src: url('https://www.subcheckplus.com/static/assets/vendor/icon-line/fonts/Simple-Line-Icons.eot?v=2.4.0');
    src: url('https://www.subcheckplus.com/static/assets/vendor/icon-line/fonts/Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'), url('https://www.subcheckplus.com/static/assets/vendor/icon-line/fonts/Simple-Line-Icons.woff2?v=2.4.0') format('woff2'), url('https://www.subcheckplus.com/static/assets/vendor/icon-line/fonts/Simple-Line-Icons.ttf?v=2.4.0') format('truetype'), url('https://www.subcheckplus.com/static/assets/vendor/icon-line/fonts/Simple-Line-Icons.woff?v=2.4.0') format('woff'), url('https://www.subcheckplus.com/static/assets/vendor/icon-line/fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "communication-48-x-48";
    src: url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/communication/webfont/fonts/communication-48-x-48.eot");
    src: url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/communication/webfont/fonts/communication-48-x-48.eot#iefix") format("embedded-opentype"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/communication/webfont/fonts/communication-48-x-48.woff") format("woff"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/communication/webfont/fonts/communication-48-x-48.ttf") format("truetype"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/communication/webfont/fonts/communication-48-x-48.svg#communication-48-x-48") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "education-48";
    src: url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/education/webfont/fonts/education-48.eot");
    src: url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/education/webfont/fonts/education-48.eot#iefix") format("embedded-opentype"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/education/webfont/fonts/education-48.woff") format("woff"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/education/webfont/fonts/education-48.ttf") format("truetype"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/education/webfont/fonts/education-48.svg#education-48") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "finance";
    src: url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/finance/webfont/fonts/finance.eot");
    src: url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/finance/webfont/fonts/finance.eot#iefix") format("embedded-opentype"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/finance/webfont/fonts/finance.woff") format("woff"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/finance/webfont/fonts/finance.ttf") format("truetype"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/finance/webfont/fonts/finance.svg#finance") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "real-estate";
    src: url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/real-estate/webfont/fonts/real-estate.eot");
    src: url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/real-estate/webfont/fonts/real-estate.eot#iefix") format("embedded-opentype"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/real-estate/webfont/fonts/real-estate.woff") format("woff"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/real-estate/webfont/fonts/real-estate.ttf") format("truetype"), url("https://www.subcheckplus.com/static/assets/vendor/icon-line-pro/real-estate/webfont/fonts/real-estate.svg#real-estate") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hs-icons';
    src: url('https://www.subcheckplus.com/static/assets/vendor/icon-hs/fonts/hs-icons.ttf?xa77py') format('truetype'), url('https://www.subcheckplus.com/static/assets/vendor/icon-hs/fonts/hs-icons.woff?xa77py') format('woff'), url('https://www.subcheckplus.com/static/assets/vendor/icon-hs/fonts/hs-icons.svg?xa77py#hs-icons') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OX-hpOqc.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OVuhpOqc.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OXuhpOqc.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OUehpOqc.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OXehpOqc.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OXOhpOqc.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OUuhp.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWJ0bbck.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFUZ0bbck.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWZ0bbck.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVp0bbck.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWp0bbck.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFW50bbck.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0b.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOX-hpOqc.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOVuhpOqc.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOXuhpOqc.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOUehpOqc.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOXehpOqc.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOXOhpOqc.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOUuhp.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOX-hpOqc.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOVuhpOqc.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXuhpOqc.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUehpOqc.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXehpOqc.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXOhpOqc.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhp.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rsOX-hpOqc.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rsOVuhpOqc.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rsOXuhpOqc.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rsOUehpOqc.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rsOXehpOqc.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rsOXOhpOqc.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rsOUuhp.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
