﻿:root {
    font-family: 'Inter', sans-serif;
}

@supports (font-variation-settings: normal) {
    :root {
        font-family: 'Inter var', sans-serif;
    }
}

@media (max-width: 991.98px) {
    header.header.animate > .container {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }
}

header.header.hide {
    -webkit-animation: header-hide .1s ease-in;
    animation: header-hide .1s ease-in;
}

header.header.show {
    -webkit-animation: header-show .2s ease-out;
    animation: header-show .2s ease-out;
}

header.header.fixed {
    position: fixed !important;
}

header.header > .container {
    border-bottom: 1px solid #c8d1d8;
    padding: 0;
}

@media (max-width: 991.98px) {
    header.header > .container {
        max-width: none;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

header.header .navbar-logo {
    display: block;
    margin-right: calc(5% + 15px);
}

@media (max-width: 991.98px) {
    header.header .navbar-logo {
        margin-top: .5rem;
    }
}

header.header .navbar-logo imgd {
    max-width: 120px;
}

header.header .navbar {
    padding: 0;
    height: 100%;
}

    header.header .navbar .btn__mobile {
        margin-left: auto;
        display: none;
    }

header.header .navbar__content {
    height: 100%;
}

@media (max-width: 992px) {
    header.header .navbar__content {
        background-color: #f7f7f8;
        margin-left: -20px;
        margin-right: -20px;
        margin-top: 12px;
    }
}

.header .sub-menu {
    padding-left: 0;
}

header.header .navbar__content--menu {
    height: 100%;
}

@media (max-width: 991.98px) {
    header.header .navbar__content--menu {
        height: auto;
    }
}

header.header .navbar__content--menu > li.menu-item {
    position: relative;
    margin: 0 2rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

@media (min-width: 992px) {
    header.header .navbar__content--menu > li.menu-item:before {
        content: "";
        background: #2d9bf3;
        height: 3px;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scale3d(0.5, 1, 0.5);
        transform: scale3d(0.5, 1, 0.5);
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        -webkit-transform-origin: left;
        transform-origin: left;
    }

    header.header .navbar__content--menu > li.menu-item.active:before, header.header .navbar__content--menu > li.menu-item:hover:before {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 991.98px) {
    header.header .navbar__content--menu > li.menu-item {
        width: 100%;
        margin: 0;
        display: block !important;
    }
}

header.header .navbar__content--menu > li.menu-item:last-child {
    margin-right: 0;
}

header.header .navbar__content--menu > li.menu-item:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    header.header .navbar__content--menu > li.menu-item.menu-item-has-children:after {
        content: "\25BE";
        font-size: 11px;
        color: #2d9bf3;
        margin-left: 4px;
    }
}

header.header .navbar__content--menu > li.menu-item > a {
    line-height: 1;
    text-decoration: none;
    color: #162d59;
    padding: 1rem 0;
    cursor: pointer;
}

@media (max-width: 992px) {
    header.header .navbar__content--menu > li.menu-item > a {
        border-bottom: solid 1px rgba(0, 0, 0, 0.05);
        display: block;
        font-size: 14px;
        font-weight: 700;
        padding: 20px;
        text-transform: uppercase;
    }
}

@media (min-width: 992px) {
    header.header .navbar__content--menu ul.sub-menu {
        width: auto;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        list-style: none;
        white-space: nowrap;
        box-shadow: 0 3px 10px 0 rgba(22, 45, 90, 0.1);
        -webkit-transform-origin: top;
        transform-origin: top;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        z-index: 1000;
    }
}

@media (min-width: 992px) and (max-width: 991.98px) {
    header.header .navbar__content--menu ul.sub-menu {
        width: 100%;
        position: relative;
        top: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 992px) {
    header.header .navbar__content--menu ul.sub-menu li {
        background-color: #fff;
    }

        header.header .navbar__content--menu ul.sub-menu li:first-child {
            padding: 2rem 0 0;
        }

        header.header .navbar__content--menu ul.sub-menu li:last-child {
            padding: 0 0 2rem;
        }

        header.header .navbar__content--menu ul.sub-menu li.active a, header.header .navbar__content--menu ul.sub-menu li:hover a {
            color: #2569e3;
        }

        header.header .navbar__content--menu ul.sub-menu li a {
            display: inline-block;
            width: 100%;
            padding: 1rem 3rem;
            text-decoration: none;
            color: #162d5a;
        }
}

@media (min-width: 992px) and (max-width: 991.98px) {
    header.header .navbar__content--menu ul.sub-menu li a {
        padding: 0;
    }
}

header.header .navbar-content-cta > li {
    border-left: solid 1px #dedede;
    font-size: .9rem;
    line-height: 40px;
    padding: 0 2rem;
    text-align: center;
}

    header.header .navbar-content-cta > li:last-child {
        border-right: solid 1px #dedede;
    }

@media (max-width: 991px) {
    header.header .navbar-content-cta > li:nth-child(2) {
        border-right: solid 1px #dedede;
    }

    header.header .navbar-content-cta > li:last-child {
        display: none;
    }
}

@media (max-width: 767px) {
    header.header .navbar-content-cta > li {
        border-left: none;
        font-size: .8rem;
        line-height: 28px;
        padding: 0 10px;
    }

        header.header .navbar-content-cta > li:nth-child(2) {
            border-right: none;
        }
}

@media (max-width: 767px) {
    .header .upper .container {
        max-width: 100%;
    }
}

.badge {
    font-weight: 400;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    padding: 4px 8px;
    text-align: center;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
}

.badge-primary {
    background-color: #2d9bf3;
}

.form-control {
    height: auto;
    padding: .5rem 1rem;
}

    .form-control:focus {
        box-shadow: none;
    }

    .form-control.bg-grey {
        border: solid 1px #f7f7f8;
    }

        .form-control.bg-grey:focus {
            background-color: #f7f7f8;
            border: solid 1px #2d9bf3;
        }

.input-group .btn {
    padding: .375rem 1.5rem;
}

.nav-tabs {
    border-bottom: solid 2px #f3f3f3;
    font-size: 14px;
}

    .nav-tabs .nav-link {
        border: none;
        border-top: solid 3px transparent;
        color: #586479;
        padding: 1rem;
    }

        .nav-tabs .nav-link .tab-icon {
            color: #162d59;
        }

        .nav-tabs .nav-link.active {
            background-color: #f3f3f3;
            border-top-color: #2d9bf3;
            color: #162d59;
        }

            .nav-tabs .nav-link.active .tab-icon {
                color: #2d9bf3;
            }

.tab-content {
    border: solid 2px #f3f3f3;
    border-top: none;
}

.table th,
.table td {
    border: .0625rem solid #dcdee1;
    padding: 1.125rem 1.5rem;
}

.table th {
    background-color: #515b6b;
    color: #fff;
    font-family: "Lota Bold", sans-serif;
    font-weight: 400;
}

.table tr {
    -moz-transition: background-color 0.15s ease-out;
    -o-transition: background-color 0.15s ease-out;
    -webkit-transition: background-color 0.15s ease-out;
    transition: background-color 0.15s ease-out;
}

    .table tr:hover {
        background-color: #ecf9fd;
    }

.breadcrumb {
    background-color: transparent;
    font-size: .9rem;
    margin-bottom: .5rem;
    padding: 0;
}

    .breadcrumb .breadcrumb-item + .breadcrumb-item {
        padding-left: 1rem;
    }

        .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            content: "\f178";
            font-family: "Font Awesome 5 Pro";
            font-weight: 300;
            padding-right: 1rem;
        }

.lead {
    font-family: "Inter", sans-serif;
    font-size: 1.45rem;
    letter-spacing: -.5px;
}

h1, .h1 {
    font-size: 2.4rem;
}

.btn {
    font-size: 14px;
    padding: .5rem 1.5rem;
}

    .btn:focus {
        box-shadow: none;
    }

.btn-xl {
    padding: .75rem 3rem;
}

.btn-pill {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
}

.btn-primary {
    background-color: #2d9bf3;
    border-color: #2d9bf3;
}

    .btn-primary:hover {
        background-color: #0d82e0;
        border-color: #0d82e0;
    }

.btn-outline-primary {
    border-color: #2d9bf3;
    color: #2d9bf3;
}

    .btn-outline-primary:hover {
        background-color: #2d9bf3;
        border-color: #2d9bf3;
        color: #fff;
    }

.btn-secondary {
    background-color: #0a304e;
    border-color: #0a304e;
}

    .btn-secondary:hover {
        background-color: #041421;
        border-color: #041421;
    }

.btn-info-lighten {
    background-color: rgba(57, 175, 209, 0.25) !important;
}

.btn-primary-lighten {
    background-color: rgba(45, 155, 243, 0.25) !important;
}

.btn-link {
    color: #2d9bf3;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: #162d59;
    font-family: "Inter", sans-serif;
    font-weight: 700;
}

    h1.text-white, h2.text-white, h3.text-white, h4.text-white, h5.text-white, h6.text-white,
    .h1.text-white, .h2.text-white, .h3.text-white, .h4.text-white, .h5.text-white, .h6.text-white {
        color: #2d9bf3;
    }

.color-primary {
    color: #2d9bf3;
}

.color-text {
    color: #586479;
}

.color-title {
    color: #162d59;
}

.bg-gradient {
    background: #0077e3;
    background: linear-gradient(332deg, #5686b4, #477bad 39%, #345d9f);
}

.bg-grey {
    background-color: #f7f7f8;
}

.bg-blue {
    background-color: #016fad;
}

.bg-primary {
    background-color: #2d9bf3 !important;
}

.bg-secondary {
    background-color: #0a304e !important;
}

.bg-info-lighten {
    background-color: rgba(57, 175, 209, 0.25) !important;
}

.bg-comms-lighten {
    background-color: rgba(225, 159, 36, 0.25) !important;
}

.bg-primary-lighten {
    background-color: rgba(45, 155, 243, 0.25) !important;
}

.bg-grey-alt {
    background-color: #dee8e9;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

.no-border {
    border: none;
}

.pt-6 {
    padding-top: 4rem;
}

.pb-6 {
    padding-bottom: 4rem;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-7 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pt-8 {
    padding-top: 6rem;
}

.pb-8 {
    padding-bottom: 6rem;
}

.py-8 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.min-80 {
    min-width: 80px;
}

.min-100 {
    min-width: 100px;
}

.flip-h {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.z-10 {
    z-index: 10;
}

@-webkit-keyframes header-hide {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes header-hide {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@-webkit-keyframes header-show {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes header-show {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

#wrapper {
    position: relative;
    max-width: 100%;
}

#report-score {
    transform: translateY(-200px);
}

#meter {
    width: 100%;
    height: 100%;
    transform: rotateX(180deg);
}

.circle {
    fill: none;
}

.outline, #mask {
    stroke: #F1F1F1;
    stroke-width: 65;
}

.range {
    stroke-width: 60;
}

#slider, #lbl {
    position: absolute;
}

#slider {
    cursor: pointer;
    left: 0;
    margin: auto;
    right: 0;
    top: 58%;
    width: 94%;
}

#lbl {
    background-color: #4B4C51;
    border-radius: 2px;
    color: white;
    font-family: 'courier new';
    font-size: 15pt;
    font-weight: bold;
    padding: 4px 4px 2px 4px;
    right: -48px;
    top: 57%;
}

#meter_needle {
    height: 40%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 10%;
    transform-origin: bottom center;
    transform: rotate(270deg);
}

input[type=range] {
    -webkit-appearance: none;
}

    input[type=range]:focus {
        outline: none;
    }

    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 12px;
        cursor: pointer;
        background: #F6F6F6;
        border-radius: 25px;
        box-shadow: 0 0 0 1px #f6f6f6;
    }

    input[type=range]::-webkit-slider-thumb {
        box-shadow: 0 0 2px #B2B2B2;
        border-radius: 50%;
        height: 30px;
        width: 30px;
        background: #fff;
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -9px;
    }

    input[type=range]:focus::-webkit-slider-runnable-track {
        background: #F6F6F6;
    }

    input[type=range]::-moz-range-track {
        width: 100%;
        height: 12.8px;
        cursor: pointer;
        background: #F6F6F6;
        border-radius: 25px;
    }

    input[type=range]::-moz-range-thumb {
        box-shadow: 0 0 2px #B2B2B2;
        border-radius: 50%;
        height: 30px;
        width: 30px;
        background: #fff;
        cursor: pointer;
    }

    input[type=range]::-ms-track {
        width: 100%;
        height: 12.8px;
        cursor: pointer;
    }

    input[type=range]::-ms-fill-lower {
        background: #F6F6F6;
        border-radius: 50px;
    }

    input[type=range]::-ms-fill-upper {
        background: #F6F6F6;
        border-radius: 50px;
    }

    input[type=range]::-ms-thumb {
        height: 30px;
        width: 30px;
        top: 5px;
        position: relative;
        background: #fff;
        cursor: pointer;
        box-shadow: 0 0 2px #B2B2B2;
    }

    input[type=range]:focus::-ms-fill-lower {
        background: #F6F6F6;
    }

    input[type=range]:focus::-ms-fill-upper {
        background: #F6F6F6;
    }

body {
    background-color: #fff;
    color: #586479;
    font-family: "Open Sans", sans-serif;
}

::selection {
    background: #0a304e;
    /* WebKit/Blink Browsers */
    color: #fff;
}

::-moz-selection {
    background: #0a304e;
    /* Gecko Browsers */
    color: #fff;
}

a {
    color: #2d9bf3;
}

    a:hover {
        color: #0d82e0;
        text-decoration: none;
    }

textarea {
    min-height: 100px;
}

label {
    color: #162d59;
    margin-bottom: .2rem;
}

.icon-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

    .icon-list li {
        padding-left: 35px;
        position: relative;
    }

        .icon-list li:not(:last-child) {
            margin-bottom: 1rem;
        }

        .icon-list li:before {
            color: #2d9bf3;
            content: "\f058";
            font-family: "Font Awesome 5 Pro";
            font-weight: 400;
            position: absolute;
            left: 2px;
            top: -2px;
        }

        .icon-list li.phone:before {
            content: "\f095";
        }

        .icon-list li.address:before {
            content: "\f3c5";
            left: 4px;
        }

        .icon-list li.email:before {
            content: "\f0e0";
        }

        .icon-list li.reminder:before {
            content: "\f0f3";
        }

    .icon-list.report-icon-list li {
        padding-left: 30px;
    }

        .icon-list.report-icon-list li.pass:before {
            color: #80be6f;
        }

        .icon-list.report-icon-list li.fail:before {
            color: #e04644;
            content: "\f057";
        }

.header {
    width: 100%;
    z-index: 100;
}

    .header .logo {
        max-height: 80px;
    }

    .header.fixed {
        height: 5.5rem;
        position: fixed;
    }

        .header.fixed .upper {
            display: none;
        }

        .header.fixed .logo {
            max-height: 50px;
        }

    .header .upper {
        border-bottom: solid 1px #eee;
    }

    .header.show {
        -webkit-animation: header-show .2s ease-out;
        animation: header-show .2s ease-out;
    }

    .header.animate {
        background-color: #fff;
        border-bottom: solid 1px #c8d1d8;
    }

        .header.animate > .container {
            border-bottom-color: transparent;
        }

.hero {
    background-image: url("/Images/home-banner.jpg");
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .hero .btn {
        font-size: 16px;
        padding: .75rem 2rem;
    }

    .hero.home-hero {
        padding: 6rem 0;
    }

    .hero .report {
        height: 400px;
    }

    .hero .hero-title {
        display: inline-block;
        padding: 10px 20px;
    }

    .display-4 {
        font-size: 3.4rem;
        letter-spacing: .5px;
    }

.gradient-bg:before {
    background: -webkit-linear-gradient(left, #0b0c0c 10%, transparent 65%);
    background: -moz-linear-gradient(left, #0b0c0c 10%, transparent 65%);
    background: -o-linear-gradient(left, #0b0c0c 10%, transparent 65%);
    background: -ms-linear-gradient(left, #0b0c0c 10%, transparent 65%);
    background: -webkit-gradient(linear, left top, right top, color-stop(10%, #0b0c0c), color-stop(65%, transparent));
    background: linear-gradient(left, #0b0c0c 10%, transparent 65%);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.pricing-tier {
    border-top-style: solid;
    border-top-width: 3px;
}

    .pricing-tier.bronze {
        border-top-color: #a56421;
    }

    .pricing-tier.silver {
        border-top-color: #b4b4b4;
    }

    .pricing-tier.gold {
        border-top-color: #c9b037;
    }

.alt-tier {
    background-color: #f7f7f8;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
}

.content {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
}

    .content p {
        margin-bottom: 1.5rem;
    }

        .content p + h1,
        .content p + h2,
        .content p + h3,
        .content p + h4,
        .content p + h5,
        .content p + h6 {
            margin-top: 2.5rem;
        }

    .content *:last-child {
        margin-bottom: 0;
    }

.title-underline:after {
    background-color: #2d9bf3;
    content: "";
    display: block;
    height: 4px;
    margin-top: 1rem;
    width: 80px;
}

.title-underline.text-center:after {
    margin: 2rem auto;
}

.angled:after {
    display: block;
    content: "\20";
    background-color: #016fad;
    position: absolute;
    z-index: -1;
    width: 100%;
    right: 0;
    top: 0;
    height: 100%;
    -webkit-transform: skew(-11.6deg);
    -ms-transform: skew(-11.6deg);
    transform: skew(-11.6deg);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
}

.angled-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    background-color: #747c89;
}

    .angled-img.img-1 {
        background-image: url("https://images.pexels.com/photos/106344/pexels-photo-106344.jpeg");
    }

.home-service {
    align-items: center;
    display: flex;
    flex-direction: column;
}

    .home-service .service-icon {
        display: inline-block;
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        background: #f8f8f8;
        border-radius: 50%;
        margin-bottom: 23px;
        position: relative;
        z-index: 11;
        box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    }

        .home-service .service-icon:before {
            content: "";
            position: absolute;
            left: -10px;
            top: -10px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            z-index: -11;
            box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
        }

    .home-service .service-img {
        max-height: 40px;
        max-width: 40px;
    }

    .home-service .service-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .home-service .service-desc {
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

.page-title {
    background-position: center center;
    background-size: cover;
    padding: 4rem 0;
    position: relative;
}

@media (max-width: 767px) {
    .page-title {
        padding: 2rem 0;
    }
}

.page-title .inner {
    position: relative;
    z-index: 10;
}

    .page-title .inner .main-title,
    .page-title .inner .subtitle {
        color: #fff;
    }

    .page-title .inner .main-title {
        font-size: 3.5rem;
    }

    .page-title .inner .subtitle {
        font-weight: 300;
    }

.radio-tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

    .radio-tile-group .input-container {
        position: relative;
        height: 7rem;
        width: 7rem;
    }

        .radio-tile-group .input-container .radio-button {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            margin: 0;
            cursor: pointer;
        }

        .radio-tile-group .input-container .radio-tile {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            border: 2px solid #dedede;
            border-radius: 5px;
            padding: 1rem;
            transition: transform 300ms ease;
        }

        .radio-tile-group .input-container .icon svg {
            width: 3rem;
            height: 3rem;
        }

            .radio-tile-group .input-container .icon svg path {
                fill: #999;
            }

        .radio-tile-group .input-container .radio-tile-label {
            text-align: center;
            font-size: 0.85rem;
            margin-top: .5rem;
            color: #162d59;
        }

        .radio-tile-group .input-container .radio-button:checked + .radio-tile {
            background-color: #e6efff;
            border: 2px solid #2d9bf3;
            color: #2d9bf3;
            transition: all .2s ease;
        }

            .radio-tile-group .input-container .radio-button:checked + .radio-tile:before {
                background-color: #2d9bf3;
                -webkit-border-radius: 50%;
                border-radius: 50%;
                background-clip: padding-box;
                /* stops bg color from leaking outside the border: */
                content: "";
                height: 25px;
                position: absolute;
                right: -9px;
                top: -9px;
                width: 25px;
            }

            .radio-tile-group .input-container .radio-button:checked + .radio-tile:after {
                color: #fff;
                content: "\f058";
                font-family: "Font Awesome 5 Duotone";
                font-size: 1.3rem;
                position: absolute;
                right: -7px;
                top: -12px;
            }

            .radio-tile-group .input-container .radio-button:checked + .radio-tile .icon svg path {
                fill: #162d59;
            }

            .radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
                color: #162d59;
            }

.footer {
    background-color: #0a304e;
    color: #fff;
}

    .footer a {
        color: rgba(255, 255, 255, 0.6);
    }

        .footer a:hover {
            color: #fff;
        }

    .footer ul li {
        padding: .5rem 0;
    }

    .footer .upper {
        background-color: rgba(0, 0, 0, 0.3);
        color: #fff;
    }

        .footer .upper label {
            font-size: .8rem;
        }

        .footer .upper .footer-img {
            max-height: 50px;
        }

@media (max-width: 768px) {
    .footer .upper .footer-img {
        max-height: 35px;
    }
}

.footer .lower {
    padding-top: 5rem;
}

@media (max-width: 768px) {
    .footer .lower {
        padding-top: 3rem;
    }
}

.footer .footer-legal {
    font-size: .9rem;
}

    .footer .footer-legal .container {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem 15px;
    }

    .footer .footer-legal ul li {
        margin: 0 1rem;
    }

        .footer .footer-legal ul li:first-child {
            margin-left: 0;
        }

    .footer .footer-legal a {
        color: #2d9bf3;
    }

.footer .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-size: .9rem;
    padding: 2.4rem 0;
}

    .footer .footer-copyright a {
        color: #2d9bf3;
    }

.cookie-container {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0.2rem 2.4rem !important;
    bottom: 0;
    display: none;
    font-size: 14px;
    padding: 40px 0;
    position: fixed;
    width: 100%;
    z-index: 9999;
}