﻿
/*#region Base Declaration */

/*#region Font Declaration */

@font-face {
    font-family: RedHatDisplay-Regular;
    font-display: swap;
    src: url(/Content/fonts/RedHatDisplay-Regular.woff2) format("woff2"), url(/Content/fonts/RedHatDisplay-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: RedHatDisplay-Medium;
    font-display: swap;
    src: url(/Content/fonts/RedHatDisplay-Medium.woff2) format("woff2"), url(/Content/fonts/RedHatDisplay-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: RedHatDisplay-Bold;
    font-display: swap;
    src: url(/Content/fonts/RedHatDisplay-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url(/Content/fonts/fa-regular-400.eot);
    src: url(/Content/fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(/Content/fonts/fa-regular-400.woff2) format("woff2"),url(/Content/fonts/fa-regular-400.woff) format("woff"),url(/Content/fonts/fa-regular-400.ttf) format("truetype"),url(/Content/fonts/fa-regular-400.svg#fontawesome) format("svg")
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-display: swap;
    font-style: normal;
    font-weight: 900;
    src: url(/Content/fonts/fa-solid-900.eot);
    src: url(/Content/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/Content/fonts/fa-solid-900.woff2) format("woff2"),url(/Content/fonts/fa-solid-900.woff) format("woff"),url(/Content/fonts/fa-solid-900.ttf) format("truetype"),url(/Content/fonts/fa-solid-900.svg#fontawesome) format("svg")
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url(/Content/fonts/fa-brands-400.eot);
    src: url(/Content/fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/Content/fonts/fa-brands-400.woff2) format("woff2"),url(/Content/fonts/fa-brands-400.woff) format("woff"),url(/Content/fonts/fa-brands-400.ttf) format("truetype"),url(/Content/fonts/fa-brands-400.svg#fontawesome) format("svg")
}

/*#endregion */

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13,110,253;
    --bs-secondary-rgb: 108,117,125;
    --bs-success-rgb: 25,135,84;
    --bs-info-rgb: 13,202,240;
    --bs-warning-rgb: 255,193,7;
    --bs-danger-rgb: 220,53,69;
    --bs-light-rgb: 248,249,250;
    --bs-dark-rgb: 33,37,41;
    --bs-white-rgb: 255,255,255;
    --bs-black-rgb: 0,0,0;
    --bs-body-color-rgb: 33,37,41;
    --bs-body-bg-rgb: 255,255,255;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family-regular: 'RedHatDisplay-Regular',sans-serif,system-ui,-apple-system;
    --bs-body-font-family-medium: 'RedHatDisplay-Medium',sans-serif,system-ui,-apple-system;
    --bs-body-font-family-bold: 'RedHatDisplay-Bold',sans-serif,system-ui,-apple-system;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
}

/*#region Reset Base Styles */
*, ::after, ::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
/*#endregion */

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    font-family: var(--bs-body-font-family-regular);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

/*#endregion */

/*#region Appearance */

/*#region Specific Class Fonts - Regular, Medium, Bold */

.font-regular {
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
}

.font-medium {
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
}

.font-bold {
    font-family: var(--bs-body-font-family-bold) !important;
    font-weight: 700;
}

/*#endregion */

/*#region Font Sizes */

.fs-10 {
    font-size: 10px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-18 {
    font-size: 18px;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-46 {
    font-size: 46px !important;
}

/*#endregion */

/*#region Background Color */

.bg-white {
    background: #FFF !IMPORTANT;
}

.bg-orange {
    background: #F58220 !IMPORTANT;
}

.bg-light2-gray {
    background: #F8F8F8 !IMPORTANT;
}

.bg-black {
    background: #000000 !IMPORTANT;
}

.bg-blue {
    background: #043B72 !IMPORTANT;
}

/*#endregion */

.box-shadow {
    box-shadow: 0px 5px 10px #0000004d;
}

.box-shadow-light {
    box-shadow: 0px 0px 6px #0000004d;
}

/*#region Font Color */

.text-white {
    color: #fff !important;
}

.text-orange, .text_orange {
    color: #F58220 !important;
}

.text-orange-dark {
    color: #F15A31;
}

.text-gray {
    color: #9E9E9E;
}

.text-blue {
    color: #043B72 !important;
}

/*#endregion */

.ls-p-39 {
    letter-spacing: 0.39px;
}

.lh-16 {
    line-height: 16px !important;
}

/*#endregion */

/*#region Layout */

.header-spacing {
    padding: 60px 0;
}

.section-spacing {
    padding: 47px 0 56px 0;
}

/*#region Max Width */

.mwp-100 {
    max-width: 100%;
}

.mw-207 {
    max-width: 207px;
}

.mw-453 {
    max-width: 453px;
}

.mw-472 {
    max-width: 472px;
}

.mw-598 {
    max-width: 598px;
}

.mw-650 {
    max-width: 650px;
}

.mw-712 {
    max-width: 712px;
}

.mw-880 {
    max-width: 880px;
}

.mw-893 {
    max-width: 893px !important;
    margin: auto;
}

.mw-946 {
    max-width: 940px;
    margin: auto;
}

.mw-1035 {
    max-width: 1035px;
}

.mw-1086 {
    max-width: 1086px;
}

.mw-1320 {
    max-width: 1320px;
}

/*#endregion */

.mnh-141 {
    min-height: 141px;
}

/*#region Overflow */

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-wrap {
    overflow-wrap: break-word;
}

/*#endregion */

/*#region Text Align */

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left;
}

/*#endregion */

/*#region Position */

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.pos-fixed {
    position: fixed;
}

.pos-sticky {
    position: sticky;
}

.pos-static {
    position: static;
}

/*#endregion */

/*#region Border */

.border-0 {
    border: 0 !important;
}

.border-1 {
    border: 1px solid #c1c1c1 !important;
}

.border-2 {
    border: 2px solid #c1c1c1 !important;
}

.border-top-1 {
    border-top: 1px solid #c1c1c1 !important;
}

.border-right-1 {
    border-right: 1px solid #c1c1c1 !important;
}

.border-left-1 {
    border-left: 1px solid #c1c1c1 !important;
}

.border-bottom-1 {
    border-bottom: 1px solid #c1c1c1;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-bottom-dotted-orange-1 {
    border-bottom: 1px dotted #F58220;
}

.border-bottom-orange-1 {
    border-bottom: 1px solid #F58220;
}

/*#endregion */

/*#region Margins */

.m-auto {
    margin: auto;
}

.m-zero {
    margin: 0;
}

/*#region Bottom */

.mb-6 {
    margin-bottom: 6px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-44 {
    margin-bottom: 44px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

/*#endregion */

/*#region Top */

.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

/*#endregion */

.mlp-8 {
    margin-left: 8.33333333%;
}

.ml-16 {
    margin-left: 16px;
}

.mr-12 {
    margin-right: 12px;
}


.mr-8 {
    margin-right: 8px;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.mx-8 {
    margin-right: 8px;
    margin-left: 8px;
}

.mx-16 {
    margin-right: 16px;
    margin-left: 16px;
}

.my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

/*#endregion */

/*#region Border Radius */

.rounded-4 {
    border-radius: 4px !important;
}

.rounded-15 {
    border-radius: 15px !important;
}

.rounded-16 {
    border-radius: 16px !important;
}

.rounded-pill, .rounded-800 {
    border-radius: 800px !important;
}

.roundedp-50 {
    border-radius: 50%;
}

/*#endregion */

/*#region Height and Width */

.w-0 {
    width: 0;
}

.w-max {
    width: max-content
}

.w-16 {
    width: 16px;
}

.w-32 {
    width: 32px;
}

.w-45 {
    width: 45px;
}

.wp-54 {
    width: 54%;
}

.wp-100 {
    width: 100% !important;
}

.wp-46 {
    width: 46%;
}

.h-0 {
    height: 0;
}

.h-16 {
    height: 16px;
}

.h-55 {
    height: 55px;
}

.h-450 {
    height: 450px;
}

.hp-100 {
    height: 100%;
}

/*#endregion */

/*#region Padding */

/*#region All Sides */

.p-0 {
    padding: 0;
}

.p-4 {
    padding: 4px !important;
}

.p-8 {
    padding: 8px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px;
}

.p-25 {
    padding: 25px !important;
}

.p-35 {
    padding: 35px !important;
}

.p-48 {
    padding: 48px !important;
}

/*#endregion */

/*#region Right and Left */

.px-8 {
    padding-right: 8px !important;
    padding-left: 8px !important;
}

.px-10 {
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.px-15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.px-20 {
    padding-right: 20px !important;
    padding-left: 20px !important;
}

.px-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
}

.px-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
}

/*#endregion */

/*#region Top and Bottom */

.py-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.py-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

/*#endregion */

/*#region Top Only */

.pt-13 {
    padding-top: 13px !important;
}

.pt-50 {
    padding-top: 50px;
}

/*#endregion */

/*#region Left Only */

.pl-20 {
    padding-left: 20px !important;
}

.pl-55 {
    padding-left: 55px !important;
}

/*#endregion */

/*#region Right Only */

.pr-20 {
    padding-right: 20px !important;
}

/*#endregion */

/*#endregion */

/*#region Alignment */

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.left-neg-55 {
    left: -55px;
}

/*#endregion */

/*#region Image for Desktop */

.deskbanner {
    width: 100%;
}

.mobbanner {
    display: none;
}

/*#endregion */

/*#endregion */

/*#region Tags and Elements */

/*#region Header Tags */

h1 {
    color: #212121;
    font-size: clamp(30px, 5vw, 50px);
    margin-bottom: 10px;
    line-height: clamp(40px, 5vw, 55px) !important;
}

h2 {
    font-size: clamp(30px, 4vw, 40px);
    color: #212121;
    line-height: clamp(40px, 4vw, 50px) !important;
}

h4 {
    font-size: 24px;
    font-family: var(--bs-body-font-family-medium);
}

/*#endregion */

/*#region Button */

.btn-solid {
    margin-bottom: 16px;
    padding: 8px 30px;
    width: auto;
    display: inline-block;
    max-width: max-content;
    color: #fff !important;
    background: #F58220;
    font-weight: bold;
    color: #fff;
    border: 0;
    letter-spacing: 1px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    border-radius: 19px;
    text-transform: uppercase;
    transition: background-color 0.5s ease-in-out;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    overflow: hidden;
}

    .btn-solid::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #043B72;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .btn-solid:hover::before {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer
}

.btn-link {
    border: 2px solid;
    background: 0 0;
    text-decoration: none;
    border-radius: 19px;
    margin: 4px;
}

    .btn-link:hover {
        background-color: #757575;
        color: #ffffff;
        text-decoration: none;
    }

/*#endregion */

/*#region Accordion */

.accordion-button {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button {
        transition: none
    }
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125)
}

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(-180deg)
    }

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button::after {
        transition: none
    }
}

.accordion-button:hover {
    z-index: 2
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.accordion-header {
    margin-bottom: 0
}

.accordion-body {
    padding: 1rem 1.25rem
}

.accordion-flush .accordion-collapse {
    border-width: 0
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0
}

    .accordion-flush .accordion-item:first-child {
        border-top: 0
    }

    .accordion-flush .accordion-item:last-child {
        border-bottom: 0
    }

    .accordion-flush .accordion-item .accordion-button {
        border-radius: 0
    }

.accordion-item {
    background-color: #fff;
    border: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

    .accordion-item .accordion-button {
        font-size: 16px;
        font-weight: bold;
        color: #757575;
        background-color: #fff;
        box-shadow: none;
        padding: 0px 20px;
        border-left: 10px solid #043B72;
        transition: transform 0.5s ease-in-out;
    }

        .accordion-item .accordion-button.collapsed {
            border-left: none;
        }

        .accordion-item .accordion-button::after {
            background-image: url(/Content/images/minus.svg);
            background-repeat: no-repeat;
            background-size: 1.25rem;
            transition: transform 0.2s ease-in-out;
        }

        .accordion-item .accordion-button.collapsed::after {
            background-image: url(/Content/images/plus.svg);
        }

    .accordion-item .accordion-collapse.collapse.show {
        border-left: 10px solid #043B72;
        transition: transform 0.5s ease-in-out;
    }

.collapse:not(.show) {
    display: none;
}

.accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

/*#endregion */

/*#region NavBar */

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out
}

.nav-pills .nav-link {
    padding-bottom: 0;
}

    .nav-pills .nav-link.green.active {
        background: #043B72 !important;
    }


.nav-pills {
    border-bottom: 1px solid #dee2e6;
    justify-content: center;
}

    .nav-pills .nav-link {
        color: #9E9E9E;
    }

        .nav-pills .nav-link.active {
            color: #F58220 !important;
            border-bottom: 2px solid #F58220;
            background: transparent;
            border-radius: 0px;
        }

        .nav-pills .nav-link.tabs.active {
            color: #fff !important;
        }

/*#region Styles for screens up to 767px wide (e.g., mobile phones) */

@media (max-width: 767px) {
    .nav.nav-pills {
        width: 100%;
        flex-wrap: nowrap;
        justify-content: start !important;
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

        .nav.nav-pills::-webkit-scrollbar {
            display: none;
        }

        .nav.nav-pills button {
            width: max-content;
            min-width: 160px;
        }

        .nav.nav-pills.justify-content-center, .nav.nav-pills.fit-md {
            justify-content: center !important;
        }

    .nav-link.tabs {
        width: max-content;
    }
}

/*#endregion */

.tabs {
    border-radius: 50px !important;
    padding: 7px 25px 5px !important;
    font-size: 14px !important;
    background: #9E9E9E !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-family: "RedHatDisplay-Bold" !important;
}

    .tabs.active {
        background: #F58220 !important;
        border-bottom: 0px !important;
    }

    .tabs.br-0, .tabs.brs-0, .tabs.bre-0 {
        padding: 5px 18px 3px !important;
    }

    .tabs.br-0 {
        border-radius: 0 !important;
        border-right: 0.5px solid #fff;
        border-left: 0.5px solid #fff;
    }

    .tabs.brs-0 {
        border-radius: 50px 0 0 50px !important;
    }

    .tabs.bre-0 {
        border-radius: 0 50px 50px 0 !important;
    }

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}
/*#endregion */

/*#region Table */

.table-responsive {
    max-height: 400px;
    min-height: .01%;
}

table {
    border: 0 !important;
    max-height: 400px;
    overflow: auto;
    border-radius: 25px;
    width: 100% !important;
    margin: 0;
    background-color: #fff;
    white-space: nowrap;
    text-align: left;
    margin-bottom: 0 !important;
    caption-side: bottom;
    border-collapse: collapse;
    border-spacing: 0;
    text-indent: initial;
}

thead {
    position: sticky;
    top: 0;
    z-index: 8;
    background: no-repeat #eaeaea;
    color: #212121;
    vertical-align: bottom;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

table thead tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

    table thead tr th {
        vertical-align: middle;
        font-size: 14px;
        text-align: center;
        border: 1px solid #ccc;
        background: no-repeat #eaeaea;
        padding: 15px 8px !important;
        border-top: 0 !important;
        font-weight: bold;
    }


tbody {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

table tbody tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

    table tbody tr td {
        padding: 10px 8px;
        font-family: "RedHatDisplay-Medium";
        color: #757575;
        border-left: 1px solid #c1c1c1;
        border-right: 1px solid #d0d0d0;
        text-align: center;
    }

        table tbody tr td a {
            width: 100px !important;
            padding: 8px 15px !important;
        }

.table_btn {
    width: 100px !important;
    padding: 8px 15px !important;
    margin-bottom: 0;
}

/*#region Table - First Child */

.tb-first-child {
    max-width: 250px !important;
    width: 250px !important;
    white-space: normal;
    text-align: start;
}

/*#endregion */

/*#region Styles for screens up to 767px wide (e.g., mobile phones) */
@media (max-width: 767px) {
    .table-responsive,
    .table-responsive table {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        min-height: 0.01%;
        overflow-x: auto;
    }

    /*#region Table - First Child */

    .tb-first-child {
        table-layout: auto;
        position: sticky !important;
        left: 0;
        z-index: 2;
        max-width: 150px !important;
        width: 150px !important;
    }

    /*#endregion */
}
/*#endregion */

/*#endregion */

/*#region Slick */

.slick-dots {
    bottom: -45px !important;
    width: 100%;
    list-style: none;
    text-align: center
}

    .slick-dots li button:before {
        font-size: 0;
        line-height: 0;
        display: block;
        width: 8px;
        height: 8px;
        padding: 4px;
        cursor: pointer;
        color: transparent;
        border-radius: 50%;
        background: #bdbdbd;
        opacity: 1;
    }

/*#region Styles for screens up to 767px wide (e.g., mobile phones) */

@media (max-width: 767px) {

    .slick-dots li, .slick-dots li button, .slick-dots li button:before {
        width: 8px;
        height: 8px;
    }

        .slick-dots li.slick-active button:before {
            width: 8px;
            height: 8px;
            border: 0px solid #fff;
            margin-top: 0;
        }
}

/*#endregion */

/*#endregion */

input[type="text"], input[type="email"], input[type="number"], input[type="password"], input[type="tel"], input[type="date"], select, textarea {
    width: 100%;
    font-size: 1rem;
    padding: 10px 15px;
    height: auto;
    line-height: normal;
    color: #1e1d1d;
    border: 1px solid #757575;
    border-bottom: 1px solid #a4a4a4;
    background-color: transparent;
    border-radius: 50px;
    margin: 5px 0px;
    font-family: var(--bs-body-font-family-medium);
}

label {
    padding: 5px;
    color: #757575;
    font-family: var(--bs-body-font-family-medium);
    font-size: 14px
}

select {
    width: 247px;
    background: url(/Content/images/icons/arrow.svg) right 5px center no-repeat;
    cursor: pointer;
    background-size: 12px;
    color: #9e9e9e;
    background-color: #fff;
    line-height: 1;
    padding: 5px 32px 7px 18px;
    background-position-x: 212px;
    border: 1px solid #c1c1c1;
    text-transform: none;
}

p {
    font-size: 16px;
    color: #9E9E9E;
}

span {
    font-size: 14px;
    color: #9E9E9E;
}

a {
    font-weight: bold;
    color: #F58220;
    text-decoration: none;
}

    a:hover {
        color: #707070;
    }

/*#endregion */

.z-10 {
    z-index: 10;
}

img {
    max-width: 100%;
    height: auto;
}

/*#region Flex and Grid */

.d-grid {
    display: grid;
}

.d-flex {
    display: flex !important;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-block-important {
    display: block !important;
}

.d-block-inline {
    display: inline-block !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.align-items-center {
    align-items: center !important;
}

.align-content-end {
    align-content: end;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.gap-16 {
    gap: 16px !important;
}

/*#endregion */

/*#region Float */

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.float-none {
    float: none;
}

/*#endregion */

/*#region Header Nav Links */

nav ul li {
    float: left;
    position: relative;
    padding: 10px 0;
}

.navbar-dropdown {
    box-shadow: 0 5px 5px #2125293a;
}

.nav-list a {
    color: #707070;
    text-transform: capitalize;
    font-size: 13px;
    font-family: "RedHatDisplay-Bold";
    line-height: 27px;
    cursor: pointer;
    display: block;
    background: 0 0;
    transition: color 0.5s ease-in-out;
}

li.menu:hover .navbar-dropdown {
    display: block;
}

li.menu.no-hover:hover > a {
    border-bottom: none;
}

li.menu:hover > a img {
    border-radius: 50%;
    box-shadow: 0 0 10px #F58220;
    -moz-box-shadow: 0 0 10px #F58220;
    -webkit-box-shadow: 0 0 10px #F58220;
}

.submenu {
    grid-template-columns: 27% 1fr 1fr;
    gap: 20px;
}

    .submenu .sub2cl {
        grid-template-columns: 1fr 1fr;
    }

.submenu2 {
    grid-template-columns: 27% 1fr;
    gap: 20px;
}

    .submenu2 .sub4cl {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 0 50px;
        align-items: start;
    }

.submenu3 {
    grid-template-columns: 25% 25% 25% 25%;
}

.submenu a::after,
.submenu2 a::after {
    content: none !important;
}

.login-link:before {
    background: #043B72;
    width: 100%;
    position: absolute;
    content: " ";
    left: 0;
    top: -50px;
    height: 50px;
}

.login-link:after {
    background: #043B72;
    width: 100%;
    position: absolute;
    content: " ";
    left: 0;
    bottom: -15px;
    height: 20px;
    border-radius: 0 0 10px 10px;
    z-index: 9999;
}

.top-links a:nth-child(1) {
    color: #fff;
    background: #F58220;
    padding: 5px;
    text-decoration: none;
}

    .top-links a:nth-child(1):hover {
        text-decoration: underline;
    }

.top-links a {
    color: #F58220;
    font-size: 10px;
    text-transform: capitalize;
    font-family: RedHatDisplay-Medium;
    padding: 0 6px;
    border-right: 1px solid #F58220;
}

    .top-links a.dropdown-toggle:after {
        display: none;
    }

.dropdown-toggle {
    white-space: nowrap;
}

    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
    }

    .dropdown-toggle:empty::after {
        margin-left: 0;
    }

.dropdown-menu {
    z-index: 1000;
    display: none;
    min-width: 10rem;
}

.dropdown-menu-end {
    --bs-position: end;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d6efd;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

#navbar-toggle {
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

    #navbar-toggle span,
    #navbar-toggle span:before,
    #navbar-toggle span:after {
        cursor: pointer;
        border-radius: 1px;
        height: 3px;
        width: 30px;
        background: #000;
        position: absolute;
        display: block;
        content: "";
        transition: all 300ms ease-in-out;
    }

    #navbar-toggle.active span,
    #navbar-toggle.active span:before,
    #navbar-toggle.active span:after {
        height: 2px;
        width: 20px;
        background: #707070;
    }

    #navbar-toggle span:before {
        top: -10px;
    }

    #navbar-toggle span:after {
        bottom: -10px;
    }

    #navbar-toggle.active span {
        background-color: transparent;
    }

        #navbar-toggle.active span:before,
        #navbar-toggle.active span:after {
            top: 0;
        }

    #navbar-toggle.active {
        position: fixed;
        top: 25px;
        z-index: 99999999;
    }

        #navbar-toggle.active span:before {
            transform: rotate(45deg);
        }

        #navbar-toggle.active span:after {
            transform: rotate(-45deg);
        }


.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 0;
}

    .overlay.active {
        display: block;
        opacity: 1;
    }

/*#endregion */

/*#region Footer */

/*#region Font Awesome */

.fas {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    line-height: 1;
}

.fab {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    line-height: 1;
}

.fab, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.fa-chevron-right:before {
    content: "\f054";
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-linkedin-in:before {
    content: "\f0e1"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-plus:before {
    content: "\f067";
}

.fa-minus:before {
    content: "\f068";
}

/*#endregion */

/*#region To be Added in CMT */

.sk2footer .part1 {
    background: #F58220;
    padding: 20px 0;
}

    .sk2footer .part1 ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

        .sk2footer .part1 ul li {
            text-align: center;
        }

    .sk2footer .part1 .counter {
        color: #fff;
        font-size: 35px;
        font-family: RedHatDisplay-Bold;
    }

    .sk2footer .part1 h5 {
        font-size: 14px;
        color: #212121;
        margin-bottom: 0;
        font-family: RedHatDisplay-Medium;
    }

/*#endregion */

.sk2footer .part2 a {
    height: 30px;
    font-size: 12px;
    font-family: "RedHatDisplay-Medium";
    color: #A2AAB8;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sk2footer .part3 .address,
.sk2footer .part3 .address p span,
.sk2footer .part3 a {
    color: #A2AAB8;
    font-size: 14px;
    font-family: "RedHatDisplay-Regular";
    transition: 0.5s;
}

    .sk2footer .part3 a:hover {
        color: #ffffff;
        padding-left: 10px;
    }

    .sk2footer .part3 a.mx-2:hover,
    .sk2footer .part3 a.notA:hover {
        color: #ffffff;
        padding-left: 0px;
    }

.AtoZ p {
    margin-bottom: 0;
}

.socialIcon .notA {
    width: 27px;
    height: 27px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 7.5px;
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

    .socialIcon .notA::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 100%;
        left: 0;
        z-index: 2;
        transition: 0.5s;
    }

    .socialIcon .notA:hover .fa-20x {
        transform: rotateY(360deg);
    }

    .socialIcon .notA:hover::before {
        top: 0;
    }

.fa-20x {
    color: #fff;
    font-size: 16px;
    padding-top: 3px;
    position: relative;
    transition: 0.5s;
    z-index: 3;
}

.sk2footer .part3 ul {
    margin-bottom: 20px;
}

    .sk2footer .part3 ul li {
        margin-bottom: 7px;
        font-family: "RedHatDisplay-Regular";
    }

.sk2footer .part3 .contact li {
    margin-bottom: 10px;
}

.sk2footer .part3 .border {
    border: 1px solid #fff;
    padding: 2px 5px;
    border-radius: 3px;
    display: inline-block;
    margin-right: 10px;
}

    .sk2footer .part3 .border img {
        margin-top: -5px;
    }

.sk2footer .part3 h2 {
    font-size: 14px;
    font-family: "RedHatDisplay-Medium";
    margin-bottom: 10px;
}

    .sk2footer .part3 h2 a {
        color: #ffffff;
        font-family: "RedHatDisplay-Medium";
    }

.sk2footer .part4 {
    background: #043B72;
    padding: 7px 0;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #A2AAB8;
}

    .sk2footer .part4 h2 {
        margin-bottom: 0;
        font-size: 12px;
        font-family: RedHatDisplay-Bold;
        line-height: 28px;
    }

    .sk2footer .part4 a {
        color: rgba(255, 255, 255, 0.8);
        padding: 0 2px;
        font-size: 12px;
    }

        .sk2footer .part4 a:hover {
            color: #fff;
        }

.sk2footer .part5 {
    background-color: #043B72;
    padding: 20px 0;
    text-align: center;
    color: #9e9e9e;
    font-size: 12px;
}

    .sk2footer .part5 a,
    .sk2footer .part5 p {
        color: #d2d2d2;
        opacity: 1;
        font-size: 12px;
        font-family: RedHatDisplay-Regular;
    }

.gap-14px {
    gap: 8px;
}

.sk2footer .part5 a:hover {
    border-bottom: 1px solid #ffffff;
    color: #fff;
}

.downloadApp a {
    flex: 1;
}

    .downloadApp a:hover {
        padding-left: 0 !important;
    }

/*#endregion */

/*#region Device Specific */

/*#region Styles for screens 1024px wide and above (e.g., desktops) */

@media (min-width: 1024px) {
    .lg\:d-flex {
        display: flex !important;
    }

    .lg\:d-none {
        display: none !important;
    }

    .lg\:d-block {
        display: block !important;
    }

    .lg\:p-0 {
        padding: 0 !important;
    }

    li.menu:hover > a {
        border-bottom: 3px solid #F58220;
    }
}

/*#endregion */

/*#region Styles for screens between 768px and 1023px wide (e.g., tablets) */

@media (max-width: 1023px) {
    /*#region IPO - Banner 01 Right Section */

    .mob-content-center {
        margin-top: 30px;
        text-align: center;
        width: 100%;
    }

    /*#endregion */

    /*#region Generic */

    .md\:d-flex {
        display: flex !important;
    }

    .md\:d-none {
        display: none;
    }

    .md\:d-block {
        display: block;
    }

    .md\:flex-wrap {
        flex-wrap: wrap;
    }

    .md\:justify-content-start {
        justify-content: flex-start !important;
    }

    .md\:float-none {
        float: none;
    }

    .md\:border-0 {
        border: 0 !important;
    }

    .md\:border-bottom-1 {
        border-bottom: 1px solid #c1c1c1;
    }

    .md\:m-zero {
        margin: 0 !important;
    }

    .md\:ml-0 {
        margin-left: 0;
    }

    .md\:p-0 {
        padding: 0 !important;
    }

    .md\:py-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /*#endregion */

    /*#region Header Nav Links */

    .nav-list a {
        display: flex;
        justify-content: space-between;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 0px;
        right: 0;
        height: 100vh;
        width: 60vw;
        overflow-y: auto;
        background: #fff;
        padding-bottom: 57px;
    }

        nav ul li {
            float: none;
            padding: 0;
        }

            nav ul li a {
                padding: 7px 31px 7px 31px !important;
                line-height: 20px;
                background: #262626;
            }

            nav ul li ul li a {
                padding-left: 30px;
            }



            nav ul li a:not(:only-child)::after {
                content: "\f105";
                font-family: "Font Awesome 5 Free";
                margin-left: 5px;
            }

            nav ul li a.open:not(:only-child):after {
                content: "\f107";
            }

    .submenu h6, .submenu2 h6 {
        font-size: 12px !important;
        color: #707070 !important;
        font-family: "RedHatDisplay-Bold";
        padding: 12.85px 0;
        text-transform: unset;
        display: flex;
        justify-content: space-between;
    }

        .submenu h6::after, .submenu2 h6::after {
            font-family: "Font Awesome 5 Free";
            content: '\f067';
            font-size: 12px !important;
            color: #707070 !important;
            margin-right: 23px;
        }

        .submenu h6.open::after, .submenu2 h6.open::after {
            font-family: "Font Awesome 5 Free";
            content: '\f068';
        }

    .navbar-dropdown {
        position: static;
        height: auto;
        padding: 8px 8px 8px 45px !important;
        box-shadow: none;
    }

    /*#endregion */

    /*#region Footer */

    .sk2footer .part1 ul {
        display: block !important;
    }

        .sk2footer .part1 ul li {
            margin-bottom: 25px;
        }

            .sk2footer .part1 ul li h3 {
                margin-bottom: 0;
            }

    /*#endregion */
}

/*#endregion */

/*#region Styles for screens up to 767px wide (e.g., mobile phones) */

@media (max-width: 767px) {
    /*#region Image for Mobile */

    .deskbanner {
        display: none;
        width: 100%;
    }

    .mobbanner {
        display: block;
        width: 100%;
    }

    /*#endregion */

    /*#region Generic */

    .sm\:overflow-hidden {
        overflow: hidden
    }

    .sm\:overflow-auto {
        overflow: auto
    }

    .sm\:mw-300 {
        max-width: 300px;
    }

    .sm\:wp-100 {
        width: 100%;
    }

    .sm\:flex-wrap {
        flex-wrap: wrap;
    }

    .sm\:text-center {
        text-align: center;
    }

    .sm\:d-flex {
        display: flex !important;
    }

    .sm\:d-none {
        display: none;
    }

    .sm\:d-block {
        display: block;
    }

    .sm\:justify-content-start {
        justify-content: flex-start !important;
    }

    .sm\:float-none {
        float: none;
    }

    .sm\:border-0 {
        border: 0 !important;
    }

    .sm\:border-bottom-1 {
        border-bottom: 1px solid #c1c1c1;
    }

    .sm\:m-zero {
        margin: 0 !important;
    }

    .sm\:ml-0 {
        margin-left: 0;
    }

    .sm\:p-0 {
        padding: 0 !important;
    }

    .sm\:py-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /*#endregion */

    /*#region Header */

    .nav-list a {
        display: flex;
        justify-content: space-between;
    }

    nav ul {
        width: 90vw;
    }

        nav ul li a:not(:only-child)::after {
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            margin-left: 5px;
        }

        nav ul li a.open:not(:only-child):after {
            content: "\f107";
        }

    .submenu h6::after, .submenu2 h6::after {
        font-family: "Font Awesome 5 Free";
        content: '\f067';
        font-size: 12px !important;
        color: #707070 !important;
        margin-right: 23px;
    }

    .submenu h6.open::after, .submenu2 h6.open::after {
        font-family: "Font Awesome 5 Free";
        content: '\f068';
    }

    nav ul li {
        padding: 0;
    }

    .navbar-dropdown {
        position: static;
        height: auto;
        padding: 8px 8px 8px 45px !important;
        box-shadow: none;
    }

    .top-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: end;
        gap: 10px 15px;
    }

    /*#endregion */

    /*#region Footer */

    .sk2footer .part1 ul {
        display: block !important;
    }

        .sk2footer .part1 ul li {
            margin-bottom: 25px;
        }

            .sk2footer .part1 ul li h3 {
                margin-bottom: 0;
            }

    /*#endregion */
}

/*#endregion */

/*#endregion */

/*#region Device Specific Templates for Page Specific */

/*#region Styles for screens 1024px wide and above (e.g., desktops) */

@media (min-width: 1024px) {
}

/*#endregion */

/*#region Styles for screens between 768px and 1023px wide (e.g., tablets) */

@media (max-width: 1023px) {
}

/*#endregion */

/*#region Styles for screens up to 767px wide (e.g., mobile phones) */

@media (max-width: 767px) {
}

/*#endregion */

/*#endregion */

/*#region for disabilities css */

.submenu h3, .submenu2 h3 {
    font-size: 14px;
    color: #F58220;
    font-family: "RedHatDisplay-Bold";
    margin-bottom: 30px;
}