/* --------------- Global = brand, backgrounds, doc, checkpoints, borders --------------- */

html,
body {
    margin: 0;
    padding: 0;
    font-weight: 300;
    scroll-behavior: smooth;
    color: #000;
    font-family: Arial, sans-serif;
}

* {
    box-sizing: border-box;
}


a {
    outline: none;
    text-decoration: none;
}

html body p {
    font-size: 1rem;
}


img {
    max-width: 100%;
    height: auto;
}

svg path {
    transition: all 300ms;
}

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

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

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

.justify-center {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.no-decoration {
    text-decoration: none;
    color: white;
}

.bc-primary {
    color: #3d308b;
}

.bc-secondary {
    color: #95378C;
}

.dark-bg,
.dark-line,
.dark-text {
    color: #000000;
}

.grey-bg,
.grey-line,
.grey-text {
    color: #676767;
}

.white-bg,
.white-line,
.white-text,
    {
    color: #ffffff !important;
}

.gradient-text {
    color: #3d308b;
    background: linear-gradient(90deg, #95378C 0%, #3d308b 100%);
    background-clip: border-box;
    background-clip: border-box;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.line {
    width: 60px;
    max-width: 100%;
    height: 4px;
    background: #3d308b;
    margin: 20px auto;
    border: none;
    float: none;
}

.brand-border {
    width: 80px;
    max-width: 100%;
    height: 1px;
    background: #fff;
    border: none;
    float: none;
}

.border-points ul {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.border-points ul li {
    list-style: none;
}

.border-points p {
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 20px 0;
    width: 93%;
}

.border-points .brand-border {
    width: 100%;
}

.border-points li:first-child p {
    padding-top: 0;
}

.check-points ul {
    padding-left: 0;
}

.check-points li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.check-points p {
    margin: 0;
    text-align: left;
}

.check-points .fa-check-circle {
    font-size: 32px;
    margin-right: 12px;
}

  .small-text {
    font-size: .89rem;
}

/* ---------------  Import = font faces, font awesome --------------- */

/* Need to add .fas, .fa etc as some icons use a different font-family e.g. font awesome pro */
.fab {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}

/* --------------- Layout = flex row, row, columns  --------------- */

section {
    width: 100%;
    padding: 90px 0;
}

.row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.row:before,
.row:after {
    content: "";
    display: table;
    clear: both;
}

.flex {
    display: flex;
}

.flex-start {
    display: flex;
    justify-content: flex-start;
}

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

.flex-row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

[class*="col-"] {
    float: left;
    min-height: 1px;
    height: auto;
    padding: 0 10px;
    border: 0;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

.full-width {
    padding: 0;
    align-items: flex-start;
}

.full-width .col-12 {
    padding: 0;
}

/* --------------- Typography = headings, font sizes  --------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: normal;
    font-weight: 700;
    color: #000000;
}

h1 {
    font-size: 40px;
    margin: 1% 0;
    line-height: 120%;
}

h2 {
    font-size: 36px;
    margin: 1% 0;
    line-height: 120%;
}

h3 {
    font-size: 32px;
    margin: 1% 0;
    line-height: 120%;
}

h4 {
    font-size: 28px;
    margin: 1% 0;
    line-height: 156%;
}

h5 {
    font-size: 24px;
    margin: 1% 0;
    line-height: 156%;
}

h6 {
    font-size: 20px;
    margin: 1% 0;
    line-height: 156%;
}

p {
    font-size: 16px;
    line-height: 168%;
    font-weight: 400;
}

b,
strong {
    font-weight: 700
}

i,
italic {
    font-style: italic
}

o,
oblique {
    font-style: oblique
}

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

.btn {
    display: inline-block;
    padding: 10px 16px;
    margin: 16px 0 0 0;
    border-radius: 0px;
    box-sizing: border-box;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    color: #fff;
    background: #3d308b;
    text-align: center;
    transition: all 0.3s;
    border: none;
}

.btn:hover {
    background: #000000;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.dark-btn {
    display: inline-block;
    padding: 10px 16px;
    margin: 16px 0 0 0;
    border-radius: 0px;
    box-sizing: border-box;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    color: #000000;
    background: #3d308b;
    text-align: center;
    transition: all 0.3s;
    border: none;
    background-color: #000000;
    color: #ffffff;
}

.dark-btn:hover {
    background: #000000;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.white-btn {
    display: inline-block;
    padding: 10px 16px;
    margin: 16px 0 0 0;
    border-radius: 0px;
    box-sizing: border-box;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    color: #000000;
    text-align: center;
    transition: all 0.3s;
    border: none;
    background-color: #ffffff !important;
    color: #000000;
}

.white-btn:hover {
    background: #000000;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.btn.cyan-btn {
  background-color: #168BDB;
    color: #FFFFFF; 
}

/* --------------- Header = nav & header  --------------- */

.navbar .menu-icon {
    display: none;
}

.navbar {
    background-color: #DCDCDC;
    position: relative;
    width: 100%;
    z-index: 99;
    transition: top 300ms;
}

.navbar ul li a {
    color: #ffffff;
    text-decoration: none;
}

.navbar ul li a:hover {
    color: #EEE;
}

.navbar .top-nav-social {
    color: #ffffff;
}

.navbar .top-nav-social a {
    padding: 0;
    text-decoration: none;
    color: #EEE;
}

.navbar .brand-border {
    max-width: 100%;
    height: 1px;
    background: #3d308b;
    width: 100%;
}

.hs-menu-children-wrapper {
    background-color: #ffffff;
}

.hs-menu-children-wrapper .hs-menu-item {
    background-color: #ffffff;
    cursor: pointer;
}

.child-trigger {
    cursor: pointer;
}

.nav-logo {
    padding-top: 10px;
}

.navbar .row {
    height: 82px;
    max-width: 96%;
}

.navbar .row .col-4 img {
    padding: 7px 0 0 0;
}

.navbar .row .col-2 {
    height: 100%;
    display: flex;
    align-items: center;
    width: 180px;
    padding: 0 20px;
}

.navbar .row .col-10 {
    float: right;
    width: auto;
    padding: 0 20px;
}

.navbar ul {
    margin: 0;
    padding: 0 0 0 0;
    list-style: none;
    width: 100%;
    text-align: right;
}

.navbar .hs-menu-children-wrapper {
    background: #000000;
}

.navbar .hs-menu-children-wrapper li {
    margin: 0 auto;
    display: block;
    background: #000000;
    padding: 5px 15px;
}

.navbar .hs-menu-children-wrapper li a {
    color: #ffffff;
}

.navbar li {
    display: inline-block;
    position: relative;
    padding: 0 8px;
    line-height: 130%;
}

.navbar .level-1 li {
    padding: 0 2px;
}

.navbar .top-nav {
    background: #000;
    padding: 4px 0;
}

.navbar .top-nav .menu-list {
    width: auto;
}

.navbar .top-nav .col-12 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.navbar .top-nav li {
    color: #fff;
    font-size: 14px;
}

.navbar .top-nav li a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.navbar .top-nav li a:hover {
    color: #95378C;
}

.navbar .top-nav .client-login {
    padding: 6px;
    transition: all 300ms;
    background: #fff;
    color: #000;
}

.navbar .top-nav .client-login:hover {
    background: #95378C;
    color: #fff;
}

.navbar p {
    line-height: 16px;
}

.topnav-number.top-nav-social a i {
    color: #fff;
    transition: all 300ms;
    font-size: 18px;
    margin: 0 4px;
}

.topnav-number.top-nav-social a i:hover {
    color: #95378C;
}

/* ---------------  Menu Icon --------------- */
.navbar .menu-icon {
    cursor: pointer;
    float: right;
    padding: 28px 15px;
    position: relative;
    user-select: none;
}

.navbar .menu-icon .navicon {
    background: #ffffff;
    display: block;
    height: 3px;
    position: relative;
    transition: background 0.2s ease-out;
    width: 24px;
}

.navbar .menu-icon .navicon:before,
.navbar .menu-icon .navicon:after {
    background: #ffffff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    width: 100%;
}

.navbar .menu-icon .navicon:before {
    top: 7px;
}

.navbar .menu-icon .navicon:after {
    top: -7px;
}

/** menu icon **/
.navbar .menu-icon.active .navicon {
    background: transparent;
}

.navbar .menu-icon.active .navicon:before {
    transform: rotate(-45deg);
}

.navbar .menu-icon.active .navicon:after {
    transform: rotate(45deg);
}

.navbar .menu-icon.active .navicon:before,
.navbar .menu-icon.active .navicon:after {
    top: 0;
}

ul.hs-menu-children-wrapper {
    position: absolute;
    height: 0;
    overflow: hidden;
    text-align: left;
    width: auto;
    padding: 0 0 0 0;
}

.child-trigger {
    background-repeat: no-repeat;
    height: 20px;
    width: 12px;
    display: inline-block;
    vertical-align: bottom;
    margin: 0px 0px 0px 2px;
}

.hs-item-has-children {
    position: relative;
}

.hs-item-has-children .nav-arrow {
    position: absolute;
    transform: translate(-14px, 0);
    margin-top: 30px;
    right: 0;
}

.hs-item-has-children .nav-arrow::before,
.hs-item-has-children .nav-arrow::after {
    content: "";
    position: absolute;
    background-color: #000000;
    width: 2px;
    height: 10px;
}

.hs-item-has-children .nav-arrow::before {
    transform: translate(1px, 0) rotate(45deg);
}

.hs-item-has-children .nav-arrow::after {
    transform: translate(-5px, 0) rotate(-45deg);
}

/** submenu toggle code **/
.hs-item-has-children .hs-menu-children-wrapper {
    list-style: none;
    height: 0;
    overflow: hidden;
}

.hs-item-has-children .sub-menu-show {
    width: auto;
    margin-top: 12px;
    border-radius: 3px;
    display: block;
    position: absolute;
    top: 40px;
    z-index: 3;
    min-width: 170px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.175);
    padding: 10px 0;
}

/* ------------------  hack/fix to stop js opening menu on desktop ------------------ */
.sub-menu-show {
    height: 0;
}

.hs-item-has-children:hover .hs-menu-children-wrapper {
    height: auto;
    width: auto;
    margin-top: 12px;
    border-radius: 3px;
    display: block;
    position: absolute;
    top: 37px;
    z-index: 1;
    min-width: 190px;
    padding: 10px 0;
}

.hs-item-has-children .sub-menu-show li a:hover {
    text-decoration: underline;
}

/* ------------------  submenu styles ------------------ */
.hs-menu-children-wrapper .menu-item .nav-link {
    color: #000000;
    padding: 10px 0;
}

.hs-menu-children-wrapper .menu-item a::after {
    border: 0;
}

.navbar .hs-menu-children-wrapper li {
    margin: 0 auto;
}

.top-nav .menu-list {
    text-align: right;
}

.top-nav .row {
    text-align: right;
    height: auto;
}

.top-nav .row ul {
    padding: 7px 0 6px 0;
}

.top-nav .row span {
    padding: 8px 0 6px 10px;
    font-size: 14px;
}

.level-1.menu-list li a {
    position: relative;
    z-index: 3;
    display: inline-block;
    padding: 33px 4px;
    font-size: 14px;
}

.hs-menu-children-wrapper .hs-menu-item a {
    padding: 20px 10px 5px 10px !important;
    line-height: 150%;
}

/* ------------------  Child item menu fix ------------------  */

ul.hs-menu-children-wrapper.level-3.menu-list .hs-menu-item {
    Height: 30px !important;
}

li.hs-menu-item.hs-item-has-children {
    height: 136px;
}

ul.hs-menu-children-wrapper.level-3.menu-list {
    Padding: 0px;
    Margin: 0px;
    Height: 70%;
}


/* --------------- Footer = variations  --------------- */

/* footer {
    background: #000;
    padding: 40px 0 40px 0;
} */

/* Footer company name styling */
.company-name {
    text-align: center;
    padding: 10px 0;
    color: white !important;
    font-size: 0.85rem;
}

footer .col-2 img {
    padding: 0;
    margin: 15px 0 10px 0;
}

footer .col-2 p {
    font-size: 14px;
    font-weight: bold;
}

footer .col-2 .dark-text {
    margin-bottom: 10px;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

/* footer ul li {
    line-height: 168%;
}
 */

footer ul li a:hover {
    text-decoration: none;
    color: #000000;
}

footer .partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

footer .partners-row .col-8 img {
    max-width: 640px;
    width: 96%;
}

footer p a.dark-text:hover {
    text-decoration: underline;
}

.footer-hr-color {
    border: 1px solid #fff;
}

/* --------------- Blog --------------- */

.blog-body h6 a {
    color: #000000;
}

.blog-body h6 a:hover {
    color: #63318A;
}

.blog-body .blog-pagination__link {
    font-size: 16px;
    color: white;
    padding: 8px 10px;
    background: black;
    margin: 5px;
    transition: all 1s ease-out;
}

.blog-pagination__prev-link {
    margin-right: 10px !important;
}

.blog-body .blog-pagination__link:hover {
    color: #000;
    background: #CCCCCC;
}

.blog-body nav {
    margin-top: 40px;
    display: inline-block;
}

#blog-hero-section {
    padding: 6.5% 0 9.5% 0;
}

body section.main-blog-body {
    padding: 50px 0;
}

body section.main-blog-body section {
    padding: 0;
}

body section.main-blog-body .col-12 {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    float: none;
}

body section.main-blog-body h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

body section.main-blog-body h2 {
    margin: 40px 0;
}

body section.main-blog-body h3 {
    margin: 28px 0;
}

body section.main-blog-body h4 {
    margin: 20px 0;
}

body section.main-blog-body h5 {
    margin: 20px 0;
}

body section.main-blog-body h6 {
    margin: 20px 0;
}

body section.main-blog-body .blog-feat-image {
    margin: 10px 0 30px 0;
}

body section.main-blog-body li {
    line-height: 168%;
    margin-bottom: 10px;
}



/* --------------- System Pages = 404, 500, Search Results ---------------*/

input#hs-pwd-widget-password {
    height: 40px !important;
}

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

input,
textarea {
    display: inline-block;
    width: 100% !important;
    height: 40px;
    padding: 9px 10px;
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
    color: #000;
    border: 1px solid #000;
    box-sizing: border-box;
    border-radius: 5px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    margin: 5px 0 20px;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    color: #000;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
    color: #000;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
    color: #000;
}

textarea:-moz-placeholder,
input:-moz-placeholder {
    color: #000;
}

input::marker,
li.hs-form-booleancheckbox::marker {
    display: none !important;
}

input.hs-button.primary.large {
    font-weight: bold;
    font-size: 16px;
    background: #EEE;
    border-radius: 5px;
    padding: 8px 16px;
    max-width: 200px;
}

input.hs-button.primary.large:hover {
    background: #000;
    color: #fff;
    cursor: pointer;
}

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

label.hs-error-msg {
    color: red;
    font-size: 12px;
}

ul.no-list.hs-error-msgs.inputs-list {
    margin: 0 auto 40px;
    padding: 0;
}

.legal-consent-container p {
    color: #000;
    font-size: 12px;
    line-height: 14px;
}

.legal-consent-container .hs-form-booleancheckbox-display input {
    float: left;
    border: 1px solid #000;
    border-radius: 5px !important;
    height: auto;
    padding: 8px;
}

/* --------------- Sliders --------------- */

/* --------------- Heros --------------- */

.basic-hero {
    padding: 8% 0 8% 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.basic-hero h1,
.basic-hero h2,
.basic-hero h3,
.basic-hero h4,
.basic-hero h5,
.basic-hero h6 {
    margin: 0 0 0 0;
    color: #000;
    line-height: 163%;
}

.basic-hero h4,
.basic-hero h5 {
    padding: 20px 0 40px 0;
    font-weight: 400;
}

.basic-hero h6 {
    padding: 0px 0 40px 0;
    font-weight: 400;
}

.basic-hero .col-8 {
    width: auto;
    max-width: 96%;
    margin: 0 auto;
}

.one-column-hero {
    padding: 8% 0 8% 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.one-column-hero h1,
.one-column-hero h2,
.one-column-hero h3,
.one-column-hero h4,
.one-column-hero h5,
.one-column-hero h6,
.one-column-hero p {
    color: #ffffff;
}

.one-column-hero .btn:hover {
    background: #ffffff;
    color: #000000;
}

.two-column-hero {
    padding: 8% 0 8% 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.two-column-hero h1,
.two-column-hero h2,
.two-column-hero h3,
.two-column-hero h4,
.two-column-hero h5,
.two-column-hero h6,
.two-column-hero p {
    color: #000;
}

.two-column-hero .btn:hover {
    background: #ffffff;
    color: #000000;
}


/* --------------- Maps --------------- */

.hs-responsive-embed-inner-wrapper {
    height: 500px;
}

.map-fw-text-col {
    height: 500px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 7.5%;
    justify-content: center;
    background: #EEE;
}

.map-embed-col {
    width: 50%;
    overflow: hidden;
    height: 500px;
}

.map-embed-col iframe {
    width: 100%;
    height: 500px;
}

.map-text-col {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 7.5%;
    justify-content: center;
}

/* --------------- Skew Sections = Skew Up & Down --------------- */

.skew-up {
    transform: skew(0deg, -3deg);
    background-color: #EEE;
}

.skew-up .skew-counter {
    transform: skew(0deg, 3deg);
}

.skew-down {
    transform: skew(0deg, 3deg);
    background-color: #EEE;
}

.skew-down .skew-counter {
    transform: skew(0deg, -3deg);
}

.skew-up,
.skew-down {
    padding: 6% 0 4%;
    margin: 4% 0;
}

.skew-down-hero {
    padding: 4% 0 8%;
}

.skew-up-hero {
    padding: 6% 0;
}


/* --------------- Cards --------------- */

.flex-card {
    width: 31%;
    margin: 0 1% 2%;
    background: #fff;
    box-shadow: 4px 4px 6px 4px rgba(0, 0, 0, 0.1);
}

.flex-card h4 {
    margin-top: 0;
}

.flex-card .flex-card-image {
    width: 100%;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.flex-card .card-body {
    padding: 20px;
}


.cards-over-skew {
    position: relative;
}

.cards-over-skew .overlapped-skew {
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 38%;
    height: 450px;
    width: 100%;
    z-index: -1;
    transform: skew(0deg, -3deg);
}

.cards-over-skew .flex-row {
    flex-wrap: wrap;
    justify-content: center;
}


/* --------------- Tablet --------------- */
/* Everything under large device screens */
@media (max-width: 992px) {
    section {
        padding: 50px 0;
    }

    h1 {
        font-size: 36px;
        font-weight: 700;
    }

    h2 {
        font-size: 28px;
        font-weight: 700;
    }

    h3 {
        font-size: 24px;
        font-weight: 700;
    }

    h4 {
        font-size: 20px;
        font-weight: 700;
    }

    h5,
    h6 {
        font-size: 18px;
        font-weight: 400;
    }

    body section.main-blog-body {
        padding: 40px 0;
    }

    body section.main-blog-body h1 {
        font-size: 36px;
    }

    body section.main-blog-body ul li {
        text-align: left;
    }

    [class*="col-"] {
        width: 96%;
        padding: 0 10px;
        float: none;
        margin: 0 auto;
        text-align: center;
    }

    .row {
        padding-left: 0;
        padding-right: 0;
    }

    .row .border-points {
        margin-top: 40px;
    }

    .brand-border {
        margin: auto;
    }

    .mobHide {
        display: none;
    }

    .map-text-col {
        text-align: center;
        align-items: center;
    }
  
    /* used to center align blog flex cards on mobile/ipad */  
    .flex-card-center {
    justify-content: center;
  }
}


/* Everything under Medium device screens */
@media (max-width: 768px) {
    .home section.flexible .row ul li p {
        text-align: center;
    }

    .home section .row ul li {
        display: block;
    }

    .mobile-mt {
        margin-top: 40px;
    }

    .homepage .grey-box .box-heading {
        display: flex;
        justify-content: center;
    }

    .section.three-by-three-rt .grey-box {
        min-height: auto;
        text-align: center;
    }

    .homepage .seven-rt .col-3 {
        width: 96%;
        float: none;
    }

    .hs-blog-post .related-posts-feed .rel-posts-image {
        display: none;
    }

    .hs-blog-post .related-posts-feed.section .blog_info {
        position: relative;
        left: initial;
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .hs-blog-post .related-posts-feed.section h2 {
        text-align: center;
    }

    .homepage .two-column-hero .col-6 {
        width: 96%;
    }

    .flex-card {
        width: 94%;
        margin: 2%;
    }

    .homepage .two-column-hero {
        padding: 80px 0 60px 0;
        background-position: right;
    }
    
    .map-embed-col,
    .map-text-col,
    .map-fw-text-col {
        width: 100%;
    }
    
    .map-embed-col iframe {
        min-height: auto;
    }
}

/* --------------- Mobile ------------------------------------------------------------------------------------------ */

@media (max-width: 520px) {
    footer .col-10 .row .col-3 {
        width: 100%;
        float: none;
        text-align: center;
    }
}

/* --------------- Desktop Media Queries --------------------------------------------------------------------------- */

/*  Applying to rows/navbar below 1220px */
@media (max-width: 1220px) {
    .row {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar .row {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar .row {
        max-width: 100%;
    }

    @media (min-width: 1116px) {

        /* this is used to hide the drop down arrow on nav but then shows on mobile menu  */
        .child-trigger {
            display: none !important;
        }
    }



    /* Everything under large desktop screens */
    @media (max-width: 1115px) {
        .homepage .two-column-hero .col-6 {
            width: 96%;
        }

        .navbar img {
            margin: 16px 0;
          max-height 50px;
          max-width: 40%; 
        }

        .navbar .brand-border {
            height: 4px;
        }

        .navbar .site-menu-list {
            display: none;
            clear: both;
            max-height: 0;
            transition: max-height 0.2s ease-out;
        }

        .navbar .site-menu-list.active {
            max-height: none;
            display: block;
            text-align: center;
        }

        .navbar ul {
            flex-direction: column;
            background-color: #000000;
            height: auto;
            padding: 10px 0;
        }

        .navbar li {
            display: block;
        }

        .navbar li a {
            padding: 20px 30px;
        }

        .level-1.menu-list li a {
            padding: 10px 10px;
        }

        .navbar .row .col-8 {
            width: 100%;
            padding: 0;
            position: absolute;
            top: 80px;
            z-index: 10;
        }

        .navbar li {
            padding: 0 0 0 0;
        }

        .menu-item-has-children .sub-menu-show {
            height: auto;
            display: block;
            position: relative;
            width: 100%;
            top: 0;
            padding: 0 20px 20px 20px;
        }

        .child-trigger {
            display: inline-block !important;
        }

        .hs-item-has-children:hover .hs-menu-children-wrapper {
            height: 0;
        }

        li.hs-menu-item a:hover .hs-menu-children-wrapper.level-2.menu-list.sub-menu-show {
            padding-top: 0;
        }

        .hs-menu-children-wrapper.level-2.menu-list.sub-menu-show {
            padding-top: 0;
        }

        .hs-item-has-children:hover .hs-menu-children-wrapper.sub-menu-show {
            height: 0;
            position: relative;
            top: initial;
            padding-top: 0;
            margin-top: 0;
        }

        .sub-menu .menu-item a.nav-link {
            color: #fff;
        }

        .navbar .inner-menu-container {
            display: none;
            clear: both;
            max-height: 0;
            transition: height 0.2s ease-out;
        }

        .navbar .inner-menu-container.active {
            max-height: none;
            display: block;
            text-align: center;
            width: 100%;
            height: auto;
        }

        .acc-content,
        .acc-button {
            width: 96%;
        }

        .navbar .row .col-2.mobile-menu {
            width: 100%;
            padding: 7px !important;
        }

        .navbar .site-menu-list {
            display: none;
            clear: both;
            max-height: 0;
            transition: max-height 0.2s ease-out;
        }

        .navbar .site-menu-list.active {
            max-height: none;
            display: block;
            text-align: center;
        }

        .navbar .menu-icon {
            display: block;
            position: absolute;
            top: 0px;
            right: 0;
        }

        .navbar .menu-icon:hover {
            cursor: pointer;
        }

        .navbar ul {
            flex-direction: column;
            background-color: #000000;
            height: auto;
            text-align: left;
            padding-top: 0;
        }

        .navbar ul li a:hover {
            color: #5cafff;
        }

        .top-nav .row ul {
            padding: 0 0 0 0;
        }

        .navbar ul.hs-menu-children-wrapper {
            position: relative;
            margin: initial;
        }

        .hs-menu-children-wrapper.level-2.menu-list.sub-menu-show {
            padding-left: 10px;
            padding-bottom: 10px;
            z-index: 11;
        }

        .navbar .hs-menu-children-wrapper li {
            margin: 0 auto;
            border: none;
            background: #000000;
        }

        .navbar li {
            display: block;
        }

        .navbar li a {
            padding: 10px 20px;
            display: inline-block;
            vertical-align: middle;
        }

        .navbar .row .col-8 {
            width: 100%;
            padding: 0;
            position: absolute;
            top: 70px;
            z-index: 10;
        }

        .navbar li {
            padding: 0 0 0 0;
        }

        .hs-item-has-children .sub-menu-show {
            height: auto !important;
            display: block;
            position: relative;
            width: 100%;
            top: 0;
            padding: 10px 0;
            box-shadow: none;
        }

        .child-trigger {
            display: inline-block;
            vertical-align: middle;
        }

        .sub-menu .menu-item a.nav-link {
            color: #fff;
        }

        .navbar .inner-menu-container {
            display: none;
            clear: both;
            max-height: 0;
            transition: height 0.2s ease-out;
        }

        .navbar .inner-menu-container.active {
            max-height: none;
            display: flex;
            flex-direction: column-reverse;
            text-align: center;
            width: 100%;
            height: auto;
            padding-bottom: 10px;
        }

        .navbar .row {
            height: auto;
        }

        .navbar .row .col-10 ul {
            padding-bottom: 0;
        }

        .navbar [class*="col-"] {
            width: 100%;
            padding: 0;
            float: none;
            margin: 0 auto;
            text-align: center;
        }

        .top-nav .menu-list {
            text-align: left;
        }

        .top-nav .menu-list li a {
            color: #ffffff;
        }

        .navbar .row {
            width: 100%;
            max-width: 100%;
            background-color: #000000;
        }

        .navbar .row .col-10 {
            width: 100%;
            margin: 0 0 0 0;
        }

        .navbar .row .col-12 {
            align-items: flex-start;
        }

        .topnav .row .col-12 li a:hover {
            color: #ffffff;
        }

        .mobile-menu {
            display: block !important;
        }

        .desktop-menu {
            display: none !important;
        }

        .navbar .col-10 ul li:nth-of-type(8) {
            margin-top: 10px;
            margin-left: 10px;
        }

        .navbar .col-10 ul li:nth-of-type(8) a {
            padding: 0 0 0 0;
        }

        .navbar .hs-menu-children-wrapper li {
            padding: 3px 15px;
        }

        .hs-menu-children-wrapper .hs-menu-item a {
            padding: 15px 10px 5px 10px !important;
            line-height: 150%;
        }

        .navbar ul li a:hover {
            color: #5cafff;
            text-decoration: none;
        }

        .navbar .sub-menu-show li a:hover {
            color: #5cafff;
            text-decoration: none;
        }

        .navbar .top-nav ul li {
            padding: 0 2px;
        }

        .navbar .top-nav ul li a:hover {
            color: #5cafff;
            text-decoration: none;
        }

        .hs-item-has-children:hover .hs-menu-children-wrapper {
            padding: 0 0 0 0;
        }

        footer .row {
            text-align: center;
        }

        .navbar .top-nav {
            background: #000000;
        }

        .navbar .top-nav .client-login {
            margin: 10px 0 10px 16px;
        }

        .navbar .top-nav .col-12 {
            color: #ffffff;
            display: flex;
            flex-direction: column-reverse;
        }

        .navbar .top-nav .col-12 .top-nav-social {
            text-align: left;
            margin-left: 6px;
            margin-top: 5px;
        }

        .navbar .top-nav .col-12 .top-nav-social a {
            color: #ffffff;
            font-size: 14px;
        }

        .navbar .top-nav .col-12 .top-nav-social a .fab {
            font-size: 30px;
            margin: 12px;
            color: #ffffff;
        }

        .navbar .top-nav .col-12 .top-nav-social a:hover {
            color: #5cafff;
        }

        .top-nav .row span {
            padding: 7px 0 6px 22px;
        }

        footer .col-10 {
            margin: 0 auto;
            float: none;
        }

        footer .col-10 .col-2 {
            width: 50%;
        }

        footer .col-2 {
            width: 100%;
            text-align: center;
        }

        footer .col-2 img {
            padding: 15px;
            width: 180px;
        }

        .homepage .two-column-hero {
            background-image: url("") !important;
        }

        .homepage .two-column-hero .col-6 {
            width: 65%;
            margin: 20px auto 40px auto;
        }

        footer .col-10 .row .col-3 {
            width: 50%;
            float: left;
            text-align: center;
        }

        footer .partners-row {
            flex-direction: column;
        }

        footer .partners-row .col-8 img {
            margin-bottom: 40px;
        }

        footer .footer-menu-row {
            margin-top: 20px;
        }

        .flex-card {
            width: 45%;
            margin: 2%;
        }

        body .one-column-hero,
        body .two-column-hero,
        #blog-hero-section {
            padding: 170px 0 190px 0;
            background-position: right;
        }

        .homepage .two-column-hero {
            padding: 120px 0 80px 0;
            background-position: right;
        }

    }


    /* # sourceMappingURL=main.css.map*/