﻿/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-grey: #333333;
    --medium-grey: #efefef;
    --light-grey: #eeeeee;
    --ash: #f4f4f4;
    --primary-color: #5236ab;
    --secondary-color: #200a58;
    --white: #ffffff;
    --link-color: #151515;
    --border: 1px solid var(--light-grey);
    --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    --gradient: linear-gradient(270deg, #5236ab 0%, #e41937 100%);
}

body {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--dark-grey);
}

ul {
    list-style: none;
}

dl,
ol,
ul {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 0;
}

    .btn-primary:hover {
        background-color: #7a5aed;
        border-color: #7a5aed;
        text-decoration: none;
    }

.icon {
    padding: 0.5rem;
    background-color: var(--light-grey);
    border-radius: 10px;
}

/* Nav bar css start*/

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 14px;
    padding: 25px 0;
    color: var(--white);
    font-weight: 700;
    outline: none;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
}

.navbar .navbar-nav a:hover {
    text-decoration: none;
    color: #5236ab;
}


@media (min-width: 992px) {


    .navbar-expand-lg .navbar-nav {
        align-items: center;
        justify-content: center;
    }

    .consumer-report-section {
        margin-bottom: 30px;
    }

    .success {
        padding: 0 10px;
        border-left: 4px solid #18a86e;
    }

    .block-footer-title {
        padding-left: 10px !important;
    }

    .navbar {
        height: 64px !important;
    }

    footer .social-menu-wrapper .menu-item {
        margin-left: 15px;
    }
}

.navbar {
    z-index: 1000;
    width: 100%;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.5px 1px;
    border-bottom: 1px solid rgb(210, 210, 210);
}

    .navbar a svg {
        /* width: 98.86px; */
        height: 35.98px;
    }

    .navbar:focus-visible {
        outline: none !important;
    }

/* Navbar css end*/

img {
    max-width: 100%;
    object-fit: cover;
}


@media only screen and (min-width: 1024px) {
    #block-footercontact {
        padding: 60px 0 !important;
    }

    .contact-section > div .last {
        float: right;
    }

    .modal-content {
        width: 1000px !important;
    }
}

#block-footercontact {
    position: relative;
    padding: 30px 0;
    background: var(--gradient);
    text-align: center;
}

    #block-footercontact h2 {
        font-size: 40px;
        font-weight: 100;
        line-height: 100%;
        text-align: center;
        color: var(--white);
        text-transform: none;
        margin-bottom: 15px;
    }

.button-wrapper {
    padding-top: 30px;
}

    .button-wrapper a {
        padding: 9px 32px;
        background-color: #f9f9f9;
        color: #5236ab;
        border-radius: 30px;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
        border: 1px solid #f9f9f9;
    }


.banner-text {
    padding: 10px 20px 10px 30px;
    h2

{
    font-size: 38px;
    font-weight: 600;
    padding: 0;
    margin-bottom: 15px;
}

.desc {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 15px;
}

}

.nav-container,
.footer-container .row {
    margin: 0 !important;
}

/* Login Page css starts */

#login-banner {
    background-image: url('../images/login-banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-attachment: fixed; */
    height: 768px;
    width: 100%;
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-top: 236px; */
    height: 100%;
}

    .login-page a {
        color: var(--primary-color);
        font-weight: 600;
    }

.login-heading,
.login-content {
    text-align: center;
}

.login-heading {
    border-bottom: 4px solid var(--primary-color);
    padding: 30px;
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
    padding-bottom: 2px;
}

    .login-heading small {
        font-size: 16px;
    }

.login-content {
    display: flex;
    position: relative;
    padding: 10px;
    border: 1px solid #a8a8a8;
    margin: 30px;
    color: var(--primary-color);
}

.legend-like {
    position: absolute;
    top: -10px;
    left: 10px;
    background: var(--white);
    padding: 0 5px;
    font-size: 12px;
    color: #555;
}

#login-banner input {
    padding: 5px;
    font-size: 14px;
    /* border: 1px solid #ccc; */
    border: none;
    outline: none;
    font-size: 16px;
}

#login-banner input,
span {
    padding-left: 10px;
}

#RememberMe {
    accent-color: var(--primary-color);
}

.loginDetails {
    width: 407px;
    height: auto;
    background-color: var(--white);
    color: var(--primary-color);
}

.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

    .password-toggle-icon i {
        font-size: 18px;
        line-height: 1;
        color: var(--dark-grey);
        transition: color 0.3s ease-in-out;
    }

        .password-toggle-icon i:hover {
            color: #000;
        }

input[type="password"]::-ms-reveal {
    display: none;
}

.loginDetails input[type='Email'] {
    width: -webkit-fill-available;
}

.loginDetails input[type='password'] {
    width: 90%;
}

.rememberVal {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px;
}

    .rememberVal p {
        margin-bottom: 0 !important;
        margin-left: auto;
        margin-right: 0;
        color: var(--dark-grey);
    }

.custom-ft-size {
    font-size: 20px;
}

.contact-us-contact {
    font-size: 18px;
    font-weight: 600;
}

.success {
    height: 72px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    .success p {
        margin-left: 36px;
        margin-bottom: 0;
    }


/* Login Page css end */


/* hero banner start */

.hero-banner {
    background-color: var(--medium-grey);
}

    .hero-banner .custom-color {
        color: var(--secondary-color);
    }

    .hero-banner .col-md-6 {
        display: flex;
        align-items: center;
        /* justify-content: center; */
    }

.hero-banner-text h2 {
    font-size: 38px;
    font-weight: 600;
    color: var(--secondary-color);
}

.hero-banner-text p {
    font-size: 18px;
}

.hero-banner a {
    font-size: 18px;
    font-weight: 600;
    color: var(--link-color);
}

/* Mobile responsive code */

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 5px;
    }

    .navbar-light .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .navbar .container {
        background: var(--white);
    }

    .navbar-toggler {
        border: none;
        font-size: 16px;
    }

    .hero-banner {
        padding: 0;
    }

    .card-deck {
        margin-bottom: 30px;
    }

    .contact-sec-text {
        margin-bottom: 30px;
    }

    .success {
        align-items: flex-start;
        padding-left: 10px;
    }

    .modal-content {
        width: 100%;
        height: auto;
    }

    footer svg {
        margin-left: 0 !important;
    }

    .navbar > .container,
    .navbar > .container-fluid,
    .navbar > .container-lg,
    .navbar > .container-md,
    .navbar > .container-sm,
    .navbar > .container-xl,
    .navbar > .container-xxl {
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: space-between;
    }

/*    .navbar {
        padding: 10px 20px !important;
    }*/
}

/* hero banner end */

/* Default Page css start */
.risk-section {
    margin-top: 30px;
}

    .risk-section a:hover {
        text-decoration: none;
        color: #5236ab;
    }

    .risk-section h2 {
        font-weight: 400;
        font-size: 28px;
        /* height: 35px; */
    }

    .risk-section p {
        font-weight: 400;
        font-size: 16px;
        text-align: justify;
        margin-top: 30px;
    }

.risk-section-cards {
    margin-bottom: 30px;
}

    .risk-section-cards .card h2 {
        font-weight: 600;
        font-size: 24px;
    }

    .risk-section-cards .card p {
        font-weight: 400;
        font-size: 16px;
    }

.card-deck {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
}

.card {
    flex: 1 0 auto;
}

.card,
.card-header,
.card-body,
.card-footer,
.view-more-link {
    border-radius: 0px !important;
    background: var(--white);
    border: 1px solid var(--medium-grey);
}

.card-img,
.card-img-top {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    height: 250px;
}

.view-more-link {
    border: 1px solid var(--medium-grey);
    padding: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

    .view-more-link a {
        color: var(--primary-color);
        font-weight: 600;
    }


        .view-more-link a:hover {
            text-decoration: none;
            color: #200a58;
        }



.card-icon-align {
    width: 24px;
    margin-left: 10px;
}

/* Default Page css end */

/* Consumer Page css start */
.consumer-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .consumer-section a:hover {
        text-decoration: none;
        color: #5236ab;
    }

    .consumer-section h2 {
        font-weight: 400;
        font-size: 28px;
        /* height: 35px; */
    }

    .consumer-section p {
        font-weight: 400;
        font-size: 16px;
        text-align: justify;
        margin-top: 30px;
    }

.consumer-section-accordians {
    margin-bottom: 30px;
}

    .consumer-section-accordians ul li {
        list-style-type: disc;
        margin-bottom: 1rem;
    }

    .consumer-section-accordians ol li {
        margin-bottom: 1rem;
    }

.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item:first-of-type {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.accordion-button::after {
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3E%3C/svg%3E"); */
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8H0V6H6V0H8V6H14V8H8V14H6V8Z' fill='url(%23paint0_linear_5827_911)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_5827_911' x1='-2.6077e-08' y1='7' x2='14' y2='7' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E31937'/%3E%3Cstop offset='0.6' stop-color='%23A82465'/%3E%3Cstop offset='1' stop-color='%235236AB'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    background-position: center;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='2' viewBox='0 0 14 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2V0H14V2H0Z' fill='url(%23paint0_linear_5827_972)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_5827_972' x1='-2.6077e-08' y1='1' x2='14' y2='1' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E31937'/%3E%3Cstop offset='0.6' stop-color='%23A82465'/%3E%3Cstop offset='1' stop-color='%235236AB'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    background-position: center;
}

.accordion-button:not(.collapsed) {
    background: var(--white);
}

.accordion-button {
    color: var(--secondary-color);
}

    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(0, 0, 0, .125);
    }

.consumer-section-accordians .fz-20 {
    font-size: 20px;
    font-weight: 400;
}

.consumer-section-accordians .fz-16 {
    font-size: 16px;
    font-weight: 400;
}

.consumer-section-accordians a {
    color: var(--primary-color);
    font-weight: 400;
}

.consumer-section-accordians u {
    color: var(--primary-color);
    font-weight: 400;
}

.consumer-section-accordians .link {
    color: var(--primary-color);
}

.consumer-section-accordians ul,
ol {
    font-weight: 400;
    margin-bottom: 1rem;
}

.consumer-section-accordians button {
    font-size: 18px;
}

.consumer-report-section .fz-24 {
    font-size: 24px;
    font-weight: 600;
}

.consumer-report-section u {
    color: var(--primary-color);
    word-break: break-word;
}

.consumer-report-section .heading {
    color: var(--primary-color);
    font-weight: 400;
}

.consumer-report-section .custom-color {
    color: var(--secondary-color);
}

.consumer-section-accordians .accordion-button:not(.collapsed) {
    box-shadow: none;
}

/* Consumer Page css end */

/* Contact Page css start */
.contact-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .contact-section p {
        color: var(--dark-grey);
        font-weight: 400;
        font-size: 24px;
        margin-bottom: 0;
    }

    .contact-section a {
        font-size: 20px;
        text-decoration: underline;
        font-weight: 400;
        color: var(--primary-color);
    }

    .contact-section .phone {
        font-size: 20px;
    }

/* Contact Page css end */

/* Privacy page css start */
.privacy-section {
    margin: 30px 0;
}

    .privacy-section h2 {
        font-size: 28px;
        color: var(--dark-grey);
        font-weight: 400;
    }

    .privacy-section p {
        text-align: justify;
    }

/* Privacy page css end */


/* Legal page css start */
.legal-section {
    margin: 30px 0;
}

    .legal-section h2 {
        font-size: 28px;
        color: var(--dark-grey);
        font-weight: 400;
    }

    .legal-section p {
        text-align: justify;
        font-size: 16px;
    }

    .legal-section ol li {
        margin-bottom: 1rem;
        font-size: 16px;
        font-weight: 400;
    }

/* Legal page css end */

/* Cookie page css start */
.cookie-policy-section {
    margin: 30px 0;
}

.cookie-policy-section h2 {
    font-size: 28px;
    color: var(--dark-grey);
    font-weight: 400;
}

.cookie-policy-section p {
    text-align: justify;
    font-size: 16px;
}

.cookie-policy-section ol li {
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: 400;
}

/* Cookie page css end */


/* Footer css starts */

.region-footer-top #block-footercontact h2 {
    font-size: 40px;
    font-weight: 400;
}

.button-wrapper a:hover {
    background-color: #eae6f8;
    border-color: #5236ab;
    text-decoration: none;
}

.button-wrapper a:active {
    background-color: #cbc3e6;
    border-color: #2005a8;
    text-decoration: none;
    color: #2005a8;
}

footer {
    background-color: var(--medium-grey);
}

    footer .row {
        margin: 0;
        padding: 0;
    }

    footer .block-container > div:not(.block-socialmedia-wrapper) {
        position: relative;
        padding-top: 30px;
        padding-bottom: 30px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

.cgi-insightsblock {
    min-height: 350px;
    padding: 20px 20px 20px 0;
    background-color: var(--white);
    order: 1;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#block-cgiinsightsblock::before {
    content: '';
    display: block;
    height: 100%;
    width: 30px;
    background-color: var(--white);
    position: absolute;
    top: 0;
    left: -30px;
}


#block-cgiinsightsblock .logo-footer svg {
    /* width: 66px;
    height: 32px; */
    width: 98.86px;
    height: 45.98px;
}

#block-cgiinsightsblock .logo-footer {
    margin-bottom: 10px;
}

.logo-footer h2 {
    font-size: 18px;
}

.block-menu-footer {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer .learn-more-text svg {
    margin-left: 10px;
}

.block-menu-footer ul li a:hover {
    text-decoration: none;
    color: #5236ab;
    background-color: #e4e1ee;
}

footer .learn-more-text:hover {
    text-decoration: none;
    color: #5236ab;
}

/*    footer .learn-more-text:hover svg path {
        text-decoration: none;
        fill: #5236ab;
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }*/

footer ul li a.footer-link {
    display: block;
    width: 100%;
    padding: 4px 10px;
    color: var(--link-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
    font-size: 16px;
}

.block-footer-title {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 10px;
    color: var(--dark-grey);
    padding-left: 10px;
}

.cgi-block-footer-title {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 20px;
    color: var(--dark-grey);
    margin-top: 20px;
}

footer h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 10px;
    padding-bottom: 0;
/*    min-width: 200px;*/
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer svg.ml-10 {
    width: 16px;
    margin-left: 10px;
}

#subscribenewsblock-wrapper {
    background: #ece9f6;
    border-radius: 2px;
    min-height: 350px;
}

.button--primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0 15px;
    min-width: 100px;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    border: 6px solid var(--primary-color);
    margin-left: 20px;
}

    .button--primary:hover {
        background-color: #cbc3e6;
        border-color: #cbc3e6;
        color: #2005a8;
        text-decoration: none;
    }

    .button--primary:active {
        background-color: #2005a8;
        border-color: #2005a8;
        color: white;
        text-decoration: none;
    }

.block-socialmedia-wrapper {
    position: absolute;
    z-index: 15;
    bottom: 10px;
    width: auto;
    padding-bottom: 0;
    margin-top: 0;
}

    .block-socialmedia-wrapper .social-menu-wrapper ul li a:hover {
        background: rgb(51, 51, 51);
    }

        .block-socialmedia-wrapper .social-menu-wrapper ul li a:hover path {
            fill: white;
        }

    .block-socialmedia-wrapper .social-menu-wrapper ul li a:hover {
        fill: white;
    }

        .block-socialmedia-wrapper .social-menu-wrapper ul li a:hover path.play-button {
            fill: #333333;
        }


.learn-more-text {
    padding: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.menu-social-media {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Footer css end */

@media (max-width: 768px) {

    /* Styles for screens smaller than 768px */
    #login-banner {
        background-size: cover;
        background-image: none;
        height: auto;
    }

    .loginDetails {
        width: auto;
    }

    .custom-ft-size {
        font-size: 14px;
    }

    #block-cgiinsightsblock::after {
        content: '';
        display: block;
        height: 100%;
        width: 30px;
        background-color: #fff;
        position: absolute;
        top: 0;
        right: -30px;
    }

    #subscribenewsblock-wrapper::before {
        content: '';
        display: block;
        height: 100%;
        width: 30px;
        background-color: #ece9f6;
        position: absolute;
        top: 0;
        left: -30px;
    }

    footer h3 {
        padding-left: 0;
    }

    footer a.button--primary {
        margin-left: 0;
    }

    footer svg {
        margin-left: 0;
    }

    .block-footer-title {
        padding-left: 10px;
    }
}

@media screen and (max-width:576px) {

    footer ul li a {
        padding: 4px 5px !important;
    }

    .first-col,
    .second-col,
    .third-col,
    .fourth-col,
    .fifth-col {
        width: 100% !important;
    }
}

/* Modal styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    padding: 16px 30px;
}

.modal-content {
    background-color: #fff;
    border-radius: 0;
    margin: auto;
    /*Solves a problem in which the content is being cut when the div is smaller than its' wrapper:*/
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    font-size: 16px;
}

.modal-heading {
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 20px 10px;
    height: 64px;
    border: 1px solid #fff;
}

.close {
    position: absolute;
    /* top: 0px; */
    right: 15px;
    font-size: 35px;
    cursor: pointer;
    color: white;
    font-weight: bold
}

.modal-body {
    width: auto;
    min-height: 68px;
    max-height: 700px;
    height: 100%;
    position: relative;
    border: 0;
    background: 0 0;
    overflow: auto;
    padding: 30px;
    overscroll-behavior: contain;
}

.modal ul {
    display: flex;
    align-items: center;
}

.modal li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .modal-body p {
    margin: 0 0 20px;
}

.first-col {
    width: 25%;
    float: left;
}

.second-col {
    width: 25%;
    float: left;
}

.third-col {
    width: 25%;
    float: left;
    padding-top: 45px;
}

.fourth-col {
    width: 20%;
    float: left;
    padding-top: 45px;
}

.fifth-col {
    width: 15%;
    float: left;
}

.country-head {
    font-size: 19px;
    font-weight: 400;
    color: var(--dark-grey);
    line-height: 1.4em;
}

.modal-body p a {
    text-decoration: underline;
    color: var(--primary-color);
    font-size: 16px;
}

    .modal-body p a:hover {
        color: var(--primary-color);
        font-size: 16px;
        background-color: transparent !important;
        text-decoration: underline !important;
    }

.modal-body .fs-16 {
    font-size: 16px;
}

.modal-body .fs-18 {
    font-size: 18px;
}

.modal-content .modal-head {
    font-size: 20px;
    color: var(--white);
    font-weight: 300;
    white-space: initial;
    text-overflow: initial;
}

.modal-body .find-office-link {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    padding-top: 10px;
    font-size: 18px;
}

    .modal-body .find-office-link p a.find-office {
        color: #333333 !important;
    }

        .modal-body .find-office-link p a.find-office:hover {
            color: var(--primary-color) !important;
        }

.modal-outer-link a {
    font-size: 18px;
    font-weight: 600;
    color: #151515;
    text-decoration: underline;
}

    .modal-outer-link a:hover {
        background-color: transparent !important;
        color: var(--primary-color) !important;
    }

        .modal-outer-link a:hover path {
            fill: var(--primary-color);
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

@media only screen and (max-width: 1439px) {
    .container-fluid:not(footer) {
        padding: 0 20px;
        margin: 0 auto;
    }
}

@media (min-width: 1440px) {

    .container-fluid {
        padding: 0 150px;
        margin: 0 auto;
        max-width: 1440px;
    }
}

@media only screen and (min-width: 768px) {
    .logo {
        margin-top: 0;
        /* height: 35px; */
        width: 75.22px;
    }
}

@media only screen and (min-width: 767px) {
    nav a.logo {
        padding: 17.5px 0;
    }
}

.recaptcha {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px;
}

.errorMsg {
    border: none !important;
    display: flex;
    position: relative;
    padding: 0 30px 30px;
    color: red;
}

.displayError {
    margin: 0 20px;
}

.Password {
    background-color: white !important;
    width: 90%;
}

.UserName {
    background-color: white !important;
    width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
}

.UserName::placeholder {
    background-color: transparent;
    color: #999;
}

.Password::placeholder {
    background-color: transparent;
    color: #999;
}

.xmldataSysalerts {
    border-left: 4px solid #18a86e;
    padding: 15px 0;
}

.xmldataSysalerts .rows:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px solid #D6D5D5;
}

.icons {
    padding-left: 15px;
}

.systemAlertsTimestamp {
    padding-left: 10px;
}

.systemAlertsContent {
    padding-left: 50px;
}

.cookieClose {
    position: absolute;
    right: 10px;
}

.copyright {
    padding-top: 15px;
}

.dropdown-body {
    padding-top: 0;
    padding-bottom: 0;
}

.list-item {
    padding-left: 48px;
}

@media only screen and (max-width: 576px) {
    .list-item {
        padding-left: 32px;
    }
}

.block-menu-footer ul li a:active {
    text-decoration: underline;
    color: #5236ab;
    background-color: #e4e1ee;
    border: 1px dotted black;
}

@media screen and (max-width:576px) {
    .third-col, .fourth-col {
        padding-top: 0;
    }

    .block-footer-title {
        padding-left: 5px !important;
    }

    .learn-more-text svg {
        padding-left: 5px;
    }

    #ConsumerDiv {
        
    }
}

footer .learn-more-text {
    display: inline-flex;
    align-items: center;
    padding-right: 15px;
    overflow: visible;
}

footer .learn-more-text:hover svg {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

footer .learn-more-text:hover svg path {
    fill: #5236ab;
}

.view-more-link:hover {
    color: #2005a8;
}

.view-more-link:hover svg path{
    fill: #2005a8;
}

@media screen and (max-width:387px) {
    .nav-item {
        width: min-content;
    }
}