/*#typography#*/
/*#typography/font#*/
/*#typography/font# -TESTING CI CD - */

/* Fix for &nbsp; causing large spacing issues */
/* Normalize non-breaking space width across all elements */
html, body, p, span, div, h1, h2, h3, h4, h5, h6, a, li, td, th, label, 
.lead, .card-text, .card-title, .dropdown-item, section, article, footer, header {
    word-spacing: normal;
}

/* Additional fix to prevent &nbsp; from creating excessive gaps */
* {
    font-variant-ligatures: normal;
}

/* Target specific content areas where &nbsp; might appear from CMS content */
section p,
section span,
section div,
.card-body,
.accordion-body,
#content,
#content * {
    word-spacing: 0;
    letter-spacing: normal;
    /*white-space: nowrap;*/
}

.nowrap {
    white-space: nowrap;
}

@font-face {
    font-family: 'fontello';
    src: url('/fonts/fontello.eot');
    src: url('/fonts/fontello.eot?#iefix') format('embedded-opentype'), url('/fonts/fontello.woff2') format('woff2'), url('/fonts/fontello.woff') format('woff'), url('/fonts/fontello.ttf') format('truetype'), url('/fonts/fontello.svg#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gotham';
    src: url('/fonts/gotham-black-webfont.woff') format('woff');
    src: url('/fonts/gotham-black-webfont.woff2') format('woff2');
}
@font-face {
    font-family: 'gotham medium';
    src: url('/fonts/gothammedium-webfont.woff') format('woff');
    src: url('/fonts/gothammedium-webfont.woff2') format('woff2');
}
@font-face {
    font-family: 'gotham book';
    src: url('/fonts/Gotham-Book.woff') format('woff');
    src: url('/fonts/Gotham-Book.woff2') format('woff2');
}

/*#typography/default#*/
html, body {
    font-family: 'gotham book';
    font-size: 18px;
    line-height: 1.4;
    color: #58595B;
    overflow-x: hidden;
}

/*#typography/headings#*/
h1 {
    font-family: 'gotham book';
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
    color: #0d2c53;
    margin: 1rem 0;
}
 h2 {
    font-family: 'gotham book';
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.06;
    color: #0076BC;
}
 h3 {
    font-family: 'gotham book';
    font-size: 1.5rem;
    font-weight: normal;
    line-height: normal;
    color: #58595B;
}
 h4 {
    font-family: 'gotham book';
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.09;
    color: #0076bc;
}
 h5 {
    font-family: 'gotham medium';
    font-size: 1.2rem;
    /*font-weight: bold;
    */
    line-height: normal;
    color: #004987;
}
 h6 {
    font-family: 'gotham medium';
    font-size: 1.1rem;
    line-height: normal;
}
 .lead {
    font-family: 'gotham book';
    font-size: 1.1rem;
    line-height: 1.6;
    color: #58595B;
}
 .lead > strong {
     font-weight:bold;
 }
 * + h2, ul + h3, p + h3 {
    margin-top: 2rem;
}
 h2 + .my-4 {
    margin-top: 0 !important;
}
.p-4 h4:empty, h6:empty {
    display:none;
}
.p-4 p:last-child, .my-4 ul:last-child {
    margin-bottom:0;
}
/*#typography/links#*/
 a {
    font-family: 'gotham book';
    font-weight: bold;
    text-decoration: none;
    color: #004987;
}
 a:hover {
    color: #0076bc;
}
/*#typography/lists#*/
 ul {
    list-style: none;
    /* Remove default bullets */
}
section ul > li::before {
    content: "\f45c";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 8px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    color: #DF1930;
    margin-left: -22px;
    margin-right: 16px;
}
section ul > li > ul {
    margin-top: 0.5rem;
}
section ul > li > ul > li {
    margin-bottom: 10px;
}
section ul > li > ul > li::before {
    color: #58595B;
    content: "\f068";
}
section ul.list-unstyled > li::before, 
.accordion .accordion-body ul.doc-list > li:before {
    display: none;
}
 ul > li, ol > li {
    margin-bottom: .8rem;
}
.p-4 ul {
    padding-left: 26px;
    margin-bottom:0;
}
ul.row li.col-md-12 > a {
    margin-left: -6px;
}
.accordion-body ul.row li.col-md-12 > a {
    margin-left: 0;
}
/*#tables#*/
/* need to continue styling as site is built out */
 .table {
    border-color: #F7F7F7;
    color: #58595B;
    --bs-table-striped-color: #58595B;
    --bs-table-striped-bg: #F7F7F7;
    --bs-table-active-color: #58595B;
    --bs-table-hover-color: #58595B;
}
 .table > :not(caption) > * > * {
    border-width: 0;
}
/*#utilities#*/
/*#utilities/background#*/
 .bg-primary {
    background-color: #004987 !important;
}
 .bg-secondary {
    background-color: #0076bc !important;
}
 .bg-danger {
    background-color: #DF1930 !important;
}
 .bg-warning {
    background-color: #f6921e !important;
}
 .bg-info {
    background-color: #00AEFF !important;
}
 .bg-dark {
    background-color: #58595b !important;
}
 .bg-light {
    background-color: #EBF2FA !important;
}
 .bg-ltgrey {
    background-color: #F7F7F7 !important;
}
 .bg-grey {
    background-color: #BDBBC0 !important;
}
 .bg-ltblue {
    background-color: #6998C5 !important;
}
 .bg-opacity {
    background-color: rgba(255, 255, 255, .9) !important;
}
/*#utilities/border#*/
 .border-primary {
    border-color: #004987 !important;
}
 .border-secondary {
    border-color: #0076bc !important;
}
 .border-danger {
    border-color: #DF1930 !important;
}
 .border-warning {
    border-color: #f6921e !important;
}
 .border-info {
    border-color: #00AEFF !important;
}
 .border-dark {
    border-color: #58595b !important;
}
 .border-light {
    border-color: #EBF2FA !important;
}
 .border-ltgrey {
    border-color: #F7F7F7 !important;
}
 .border-grey {
    border-color: #BDBBC0 !important;
}
 .border-ltblue {
    border-color: #6998C5 !important;
}
/*#utilities/color#*/
 .text-primary {
    color: #004987 !important;
}
 .text-secondary {
    color: #0076bc !important;
}
 .text-red {
    color: #DF1930 !important;
}
 .text-white * {
     color:#fff !important;
 }
/*#components#*/
/*#components/buttons#*/
 .btn {
    font-family: 'gotham book';
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.1rem;
    padding: .7rem 1.6rem;
    border-radius: 0;
    border-width: 1px;
    margin-bottom: 1rem;
    box-shadow: unset !important;
}
 .btn.btn-primary {
    border-color: #DF1930;
    background-color: #DF1930;
    color: #fff;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
}
 .btn.btn-primary:hover {
    border-color: #b30f27;
    background-color: #b30f27;
    color: #fff;
}
 .btn.btn-secondary {
    border-color: #58595b;
    background-color: #58595b;
}
 .btn.btn.btn-secondary:hover {
    border-color: #BDBBC0;
    background-color: #BDBBC0;
}
 .btn.btn-outline-primary {
    border-color: #0076bc;
    color: #0076bc;
}
 .btn.btn-outline-primary:hover {
    background-color: #e8f5fc;
    border-color: #2c9ddf;
    color: #2c9ddf;
}
 .btn.btn-outline-secondary {
    border-color: #58595b;
    color: #58595b;
}
 .btn.btn-outline-secondary:hover {
    background-color: #f0f0f0;
    border-color: #58595b;
    color: #58595b 
}
 .btn.btn-outline-light {
    border-color: #ced4da;
    color: #707070;
}
.btn.btn-outline-light:hover {
    background-color: #EBF2FA;
    border-color: #ced4da;
    color: #707070 !important;
}
 .btn-outline-light.active {
    background: #6998C5;
    color: #fff;
    border-color: #6998C5;
}
 .btn.btn-sm {
    font-family: 'gotham book';
    padding: .4rem .5rem;
    font-size: .8rem;
    border-width: 1px !important;
}
/* Global submit button styling - red rounded buttons */
input[type="submit"],
button[type="submit"] {
    background-color: #DF1930 !important;
    border-color: #DF1930 !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 12px 26px !important;
    font-weight: 700 !important;
    border-width: 1px !important;
    font-family: 'gotham book' !important;
    font-size: .9rem !important;
    cursor: pointer !important;
    transition: background-color .2s ease, border-color .2s ease;
}
input[type="submit"]:hover,
button[type="submit"]:hover {
    background-color: #b30f27 !important;
    border-color: #b30f27 !important;
    color: #fff !important;
}
/*#components/forms#*/
 .form-label, .form-check-label, .control-label {
    font-family: 'gotham book';
    color: #58595B;
    font-size: 14px;
}
.form-control, .form-select, .btn.btn-search {
    font-family: 'gotham book';
    font-size: 14px;
    padding: .375rem .75rem !important;
    background-color: #FFF;
    color: #444444;
    border-radius: 0;
}
.btn-toolbar .form-control {
    min-width: 200px !important;
}
.btn-toolbar .form-label {
    font-size:.9rem;
}
.btn.btn-search {
    color: #004987;
}
 .form-control:focus {
    box-shadow: none;
}
 .form-check-input[type=checkbox] {
    border-radius: 0;
}
.form-floating > label {
    font-family: 'gotham book';
    color: #58595B;
    font-size: 14px;
}
 .form-floating > label, .form-floating > .form-control {
    font-family: 'gotham book';
}
 .form-floating > .form-control, .form-floating > .form-select {
    height: 40px;
}
 .form-floating > textarea {
    min-height:100px;
 }
 .form-floating > .custom-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
 }
.form-floating > label {
    top: -10px;
    height: auto;
    padding: 0px 5px;
    background: white;
    margin-left: 5px;
}
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label,
.form-floating.form-floating-select > label, form[action$="displayValidationErrors=True"] .form-floating > label,
form[id^="form-MarketingAndCommunicationsRequestForm"] .form-floating > label {
    transform: scale(.65) translateY(-.5rem) translateX(.15rem);
}
.ktc-checkbox-list, .ktc-radio-list {
    display: block;
    margin: 0.5rem 0;
}
.ktc-checkbox, .ktc-radio > .ktc-radio {
    display: flex;
    align-items: center !important;
    min-height: 1.5rem;
    margin-bottom: 0.125rem;
}
.ktc-checkbox .form-control, .ktc-radio .form-control {
    float: left;
    margin-right:10px;
    width: 18px;
    height: 18px;
    padding: 0 !important;
}
.ktc-radio .form-control {
    border-radius:100%;
}
.ktc-checkbox .form-control:checked[type=checkbox] {
    background-color: #58595B;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
}

.ktc-radio .form-control:checked[type=radio] {
    background-color: #58595B;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
}
.ktc-checkbox label, .ktc-radio label {
    font-family: 'gotham book';
    color: #58595B;
    font-size: 14px;
}
label.control-label.required-field:after {
    content: "*";
}
.field-validation-error {
    color:red;
    font-size:13px;
}
.input-validation-error {
    border-color: #DF1930;
}
.marcommform label.control-label{
    font-weight:bold;

}

/*#components/forms/datepicker*/
.datePicker {
    background: #fff url(https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/calendar_2.png) 97% 50% no-repeat;
    max-width: 300px;
}
.ui-datepicker {
    background: #F7F7F7;
}
.ui-widget-header {
    background: #0076BC;
    border: none;
    border-radius: 0;
    font-size: 1rem;
}
.ui-datepicker th {
    padding: .3rem;
    font-size:.9rem;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    background: #F7F7F7;
    padding: .1rem .3rem;
    font-size: .9rem;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight {
    background: #00AEFF;
    border-color: #00AEFF;
    color: #fff;
}
.ui-state-hover, .ui-widget-content .ui-state-hover {
    border-color: #F6921E;
    color: #F6921E;
}

/*#components/forms/mixitup*/
.mixitup-control {
    color: #58595B;
    border: 1px solid #ced4da !important;
    padding: .3rem .5rem;
    background: #fff;
    font-size:.9rem;
}
.mixitup-control-active {
    background: #6998C5;
    color: #fff !important;
    border-color: #6998C5;
}
.mixitup-control-disabled, .mixitup-control-truncation-marker {
    background-color: #F7F7F7 !important;
    color: #BDBBC0 !important;
    border-color: #BDBBC0 !important;
}
.mixitup-control:hover {
    background-color: #EBF2FA;
    border-color: #cccccc;
    color: #707070 !important;
}
.mixitup-page-stats {
    color: #58595B;
    font-size: .8rem;
}
/*#components/header#*/
 
/*#components/header/navigation#*/
 .navbar {
    background-color: #fff;
    padding: 20px 0;
}

/* Override for overlay header - keep transparent */
#header-overlay .navbar {
    background-color: transparent !important;
}
/*#components/header/navigation/dropdown#*/
 .navbar .nav > .dropdown > .dropdown-menu {
    border: none;
    border-top: 4px solid #0076BC;
    border-radius: 0;
    padding: 15px 0;
    color: #58595b;
    margin-top: 24px;
    top: unset;
}
 .navbar .dropdown-menu > li {
    margin-bottom: 0;
    padding: 0 1rem;
}
 .navbar .dropdown-menu .dropdown-item {
    background: transparent !important;
    padding: 15px 15px 15px 0;
    margin: 0;
    min-width: 170px;
    white-space: normal;
}
 .navbar .dropdown-menu > li + li .dropdown-item {
    /*border-top: 1px solid #BDBBC0;*/
}
 .navbar .dropdown-item, .navbar .dropdown-link, .navbar .dropdown-header, .navbar .dropdown-text, footer .dropdown-item, footer .dropdown-link, footer .dropdown-header, footer .dropdown-text {
    font-family: "gotham book";
    font-weight: normal;
    font-size: 14px;
    color: #58595B;
    line-height: 1.43;
}
 .navbar .dropdown-header, footer .dropdown-header {
    padding: 0;
    margin: 0;
}
 .navbar .nav > .dropdown > .dropdown-menu .dropdown-menu {
    position: relative;
    border: none;
    min-width: unset;
    transition: none;
}
 .navbar .nav > .dropdown > .dropdown-menu .dropdown-menu .dropdown-item {
    font-family: "gotham medium";
    font-size: 13px;
    font-weight: 500;
    color: #959398;
    padding: 0 0 15px 0;
    border: 0;
    min-width: auto;
}
 .navbar .dropdown-menu a:hover, .navbar .nav > .dropdown > .dropdown-menu .dropdown-megamenu .dropdown-menu .dropdown-item:hover, .navbar .nav > .dropdown > .dropdown-menu .dropdown-menu .dropdown-item:hover {
    color: #00AEFF;
}
 .navbar .nav > .dropdown > .dropdown-menu a[data-bs-toggle="collapse"] {
    font-size: 24px;
    color: #0076BC;
}
 .navbar .nav > .dropdown > .dropdown-menu a[aria-expanded="true"] i:before {
    content: "\f146";
}
/*#components/header/navigation/card#*/
 .navbar .dropdown-menu .card {
    font-family: "gotham book";
    font-weight: normal;
    padding: 1rem;
}
 .navbar .dropdown-menu .card-header, .navbar .dropdown-menu .card-footer {
    background: transparent;
    border: none;
    padding: .5rem 1rem;
}
 .navbar .dropdown-menu .card-header {
    height: 75px;
    padding-top:0;
    padding-bottom:0;
}
 .navbar .dropdown-menu .card-title {
    font-size: 14px;
    font-weight: normal;
    line-height: 19px;
    color: #004987;
    margin-bottom: 1rem;
}
 .navbar .dropdown-menu .card-text {
    font-size: 14px;
    line-height: 1.43;
    color: #58595B;
    margin-bottom: 0;
}
 .navbar .dropdown-menu .card-link {
    font-family: 'gotham book';
    font-weight: bold;
    font-size: 13px;
    line-height: normal;
    color: #0272B6;
}
/*#components/header/navigation/megamenu#*/
 .navbar .dropdown-menu.container .dropdown-megamenu li {
    margin: 0;
}
 .navbar .dropdown-menu.container .dropdown-megamenu .dropdown-menu {
    padding: 15px 0 0;
}
 .navbar .dropdown-menu.container .dropdown-megamenu .dropdown-menu li {
    padding: 0;
    display: flex;
    align-items: center !important;
    margin: 2px 0;
}
 .navbar .dropdown-menu.container .dropdown-megamenu .dropdown-menu li:before {
    content: "\f068";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 16px;
    float: right;
    color: #f0f0f0;
    margin-right: 10px 
}
 .navbar .nav > .dropdown > .dropdown-menu .dropdown-megamenu .dropdown-menu .dropdown-item {
    padding: 5px 0;
    color: #58595b;
}
 .navbar .dropdown-menu.container .navbar-text, footer .navbar-text {
    font-size: 1.2rem;
    color: #0076bc;
    font-style: italic;
    margin: 0;
}
/*#components/header/search#*/
 .btn.btn-search {
    border-color: #ced4da !important;
    border-left: none !important;
    margin-left: -1px !important;
}
/*#components/footer#*/
 footer {
    font-size: 0.8rem;
    line-height: 1.2rem;
    color: #6C6D6E;
}
/*#components/footer/nav#*/
 footer .list-unstyled > li {
    margin: 0;
}
 footer .link-primary {
    font-family: 'gotham medium';
    font-weight: normal;
    font-size: .8rem;
    line-height: normal;
    display: block;
    margin-bottom: .7rem;
    text-transform: uppercase;
    color: #004987;
}
 footer .link-primary:hover {
    color: #004987;
}
 footer a.link-primary:hover, footer a.link-primary.show {
    color: #0076bc;
}
 footer .link-secondary {
    font-family: 'gotham book';
    font-weight: normal;
    font-size: 13px;
    line-height: normal;
    display: block;
    margin-bottom: 8px;
    color: #58595B;
}
 footer .dropdown-menu {
    margin-bottom: 30px !important;
    left: 0 !important;
    right: 0 !important;
    border-color: #F7F7F7;
    border-bottom: 4px solid #0076BC;
    border-radius: 0;
}
 footer .list-group-item {
    background: transparent;
    border: none;
    color: #fff;
    line-height: 14px;
    margin-bottom: 0;
}
 footer .list-group-item a {
    font-family: 'gotham book';
    font-weight: normal;
    font-size: 13px;
    color: #fff;
}
/*#components/subnav#*/
 section .nav .nav-item {
    margin-bottom: 0;
    margin-right: 1rem;
}
 section .nav .nav-item::before {
    display: none;
}
 section .nav .nav-item .nav-link {
    font-family: 'gotham book';
    font-size: .9rem;
    font-weight: normal;
    color: #58595b;
    border-radius: 0;
}
 section .nav .nav-item .nav-link.active {
    background: transparent;
    border-bottom: 4px #959398 solid;
}
/*#components/accordion#*/
 .accordion .accordion-item {
    margin-bottom: 1rem;
    border: 0;
}
 .accordion .accordion-header .accordion-button {
    background: #EBF2FA;
    color: #58595b;
    box-shadow: none;
}
 .accordion .accordion-header .accordion-button:before {
}
 .accordion .accordion-body {
    padding-bottom: 0;
    padding-left: 2rem;
    padding-right: 2rem;
}
 .accordion .accordion-body ul.doc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
 .accordion .accordion-body ul.doc-list > li, .accordion .accordion-body .card-video {
    border-bottom: 1px solid #bdbbc0;
    margin: 0;
    padding: .5rem 0;
}
 .accordion .accordion-body ul.doc-list > li:first-child {
    border-top: 1px solid #bdbbc0;
}
.accordion .accordion-body .card-video .card-header, .accordion .accordion-body .card-video .card-text {
    display: inline;
    font-size: 1rem;
}
.accordion .accordion-body .card-video .card-header {
    padding-top: 0.5rem;
}
.accordion .accordion-body ul.doc-list + .mb-4 {
    margin-bottom: 0 !important;
}
.accordion .accordion-body ul.doc-list + .mb-4 + ul.doc-list > li:first-child {
    border-top: none;
}
.accordion .accordion-body ul.doc-list + h4 {
    margin-top: 2rem;
}
.accordion .accordion-body h4:empty {
    display:none;
}
/*#components/alert#*/
 .alert {
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 0;
    margin-top: -4px;
    margin-bottom: 0;
}
 .alert-warning {
    background-color: #f6921e !important;
    border-color: #f6921e !important;
    color: #ffffff;
}
 .alert-warning:hover {
    background-color: #fcc07a !important;
    border-color: #fcc07a !important;
    color: #ffffff;
    /*color:#df1930;
    */
}
/*#components/breadcrumbs#*/
 .breadcrumb {
    margin: .5rem 0;
}
 .breadcrumb .breadcrumb-item, .breadcrumb .breadcrumb-item > a {
    font-family: 'gotham book';
    font-size: 0.8rem;
    font-weight: normal;
    color: #58595b;
    margin-bottom: 0;
}
/*#components/card#*/
 .card, .card-img, .card-img-top {
    border-radius: 0;
    border: none;
}
 .card .card-title {
    font-family: 'gotham medium';
    font-size: 1rem;
    color: #004987;
}
 .card .card-subtitle {
    font-family: 'gotham medium';
    margin: .7rem 0;
}
 .card .card-text {
    font-size: .95rem;
}
 .card .card-link {
    font-size: .95rem;
    font-family: 'gotham book';
}
 .card-header, .card-footer {
    background: transparent;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    border: none;
}
 .card-header {
    color: #58595b;
    font-family: 'gotham medium';
    font-size: 1rem;
}
.card.position-relative > .card-title.position-absolute {
    left: 2rem;
    top: -1.5rem;
    font-size: 1.25rem;
    font-weight: normal;
}
.row.align-items-stretch .bg-image.card-panel {
    height: calc(100% - 1.5rem);
}
/*#components/card/icon #*/
.card.card-icon .bg-ltgrey,
.card.card-icon .card-body {
    padding-left: 72px;
}
/*#components/card/hero #*/
.card-hero {
    position: relative;
    overflow: hidden;
    border: none;
}
 .card-hero .card-img {
    position: absolute;
    left: 50%;
    /*top: 50%;*/
    top:0;
    /*height: 100%;*/
    width: auto;
    min-width: 100%;
    /*-webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
 .card-hero .card-img-overlay {
    position: relative;
    flex: 1 1 auto;
    background-color: rgba(255, 255, 255, .9);
    clip-path: polygon( 0 0, 
    /* left top */
    98% 0%, 
    /* right top */
    76% 100%, 
    /* right bottom */
    0% 100% 
    /* left bottom */
    );
    padding: 2rem;
    border: none;
    border-radius: 0;
}
 .card .card-img-overlay .card-title {
    font-family: 'gotham book';
    font-size: 2rem;
    line-height: 1.05;
    color: #004987;
    margin-bottom: 1rem;
}
 .card .card-img-overlay .card-text {
    font-family: 'gotham book';
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.45;
    color: #58595B;
}
 .card-hero.card-hero-full {
    min-height: unset;
}
 .card-hero.card-hero-full:before {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    clip-path: polygon( 0 0, 
    /* left top */
    98% 0%, 
    /* right top */
    80% 100%, 
    /* right bottom */
    0% 100% 
    /* left bottom */
    );
    z-index: 10;
}
 .card-hero.card-hero-full .card-img-overlay {
    background: transparent;
    z-index: 100;
}
/*#components/card/services#*/
 .card.card-services {
    max-height: 700px;
    height: 40vw;
    min-height: 350px;
    margin-bottom: 3rem;
}
 .card.card-services:last-child {
    margin-bottom: 0;
}
 .card.card-services .card-body {
    flex: 0 0 auto;
    padding-bottom: 2.5rem;
    position: relative;
}
 .card.card-services .card-title {
    font-family: 'gotham book';
    font-size: 2rem;
    line-height: normal;
    color: #fff;
}
 .card.card-services .card-text {
    font-size: 1.2rem;
    line-height: 1.2;
    color: #fff;
}
/*#components/card/news#*/
 .card.card-news {
    height: 100%;
}
 .card.card-news .card-title {
    font-family: 'gotham medium';
    color: #004987;
}
 .card.card-news .card-subtitle {
    font-family: 'gotham book';
    font-size: .9rem;
    margin: .7rem 0;
}
 .card.card-news .card-link {
    font-family: 'gotham medium';
    color: #DF1930;
}
 .card.card-news .card-link:hover {
    color: #ff5072;
}
 .card.card-news .card-link > i {
    color: #004987;
    margin-left: 5px;
}
 .card.card-news .card-link:hover > i {
    color: #0076bc;
}
/*#components/card/profile#*/
 .card.card-profile .card-subtitle {
    color: #0076bc;
}

.card.card-profile .more-link, .card.card-profile .less-link {
    display: block;
    margin: 1rem 0;
}

.card.card-profile .more-link::after, .card.card-profile .less-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.card.card-profile .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* number of lines to show */
    line-clamp: 6;
    -webkit-box-orient: vertical;
    white-space: normal;
    transition: none;
    position: relative;
}

.card.card-profile .text-truncate.show {
    overflow: visible;
    display: block;
    transition: none;
}

.card.card-profile .text-truncate.show p:last-child {
    margin-bottom: 0;
}

.card.card-profile .card-link[aria-expanded="false"] .collapse-state::before {
    content: "more";
    display: inline;
}

.card.card-profile .card-link[aria-expanded="true"] .collapse-state::before {
    content: "less";
    display: inline;
}

/* Desktop: Ensure proper layout for team cards */
@media (min-width: 768px) {
    .card.card-profile {
        margin-bottom: 1.5rem;
    }

    .card.card-profile .row {
        display: flex;
        align-items: flex-start;
    }

    .card.card-profile img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .card.card-profile .card-title {
        font-size: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .card.card-profile .card-subtitle {
        font-size: 0.9rem;
    }

    .card.card-profile .card-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}
/*#components/card/checkerboard#*/
.card.checkerboard:first-child {
    margin-top: 1.5rem;
}
.p-4 + .row .card.checkerboard {
    margin-top: 0;
}
.img-fill {
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}
/*#components/card/panel#*/
.card.card-panel {
    min-height:115px;
}
.card.card-panel .card-body {
    display: flex;
    padding: 1.5rem 3rem;
    position: relative;
    height: 100%;
}
.card.card-panel .card-title {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.1;
    font-weight: normal;
    text-align: center;
    margin:0;
}
/*#components/carousel#*/
.carousel-control-next, .carousel-control-prev {
    width: auto;
}
 .carousel-control-next-icon, .carousel-control-prev-icon {
    position: relative;
    z-index: 100;
}
 .carousel-control-next-icon:before, .carousel-control-prev-icon:before {
    content: "";
    background: rgba(255, 255, 255, 0.62);
    position: absolute;
    z-index: 10;
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 50%;
    top: 50%;
    /* position the top edge of the element at the middle of the parent */
    left: 50%;
    /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%);
}
 .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 10px;
}
.carousel .carousel-caption {
    background: rgba(0,0,0,.5);
    padding-top:1.5rem;
    padding-left:3rem;
    padding-right:3rem;
    padding-bottom:0.5rem;
    left:0;
    right:0;
    bottom:0;
}
.carousel-inner + .carousel-indicators [data-bs-target] {
    background-color: #bdbbc0;
}
/*#components/carousel/partners#*/
 #carouselPartners .carousel-item {
    column-count: 3;
    column-gap: calc(var(--bs-gutter-x) * .5);
    margin-bottom: 2rem;
}
 #carouselPartners .carousel-item .partner-logo {
    margin: 2rem var(--bs-gutter-x,.75rem);
    display: grid;
    grid-template-rows: 1fr auto;
    break-inside: avoid;
}
 #carouselPartners .carousel-item .partner-logo > img {
    grid-row: 1 / -1;
    grid-column: 1;
}
 .carousel-indicators {
    margin-top: 1rem;
}
 #carouselPartners .carousel-indicators [data-bs-target] {
    background-color: #bdbbc0;
}
/*#components/carousel/lightbox#*/
.lightbox-carousel img {
    max-height: 80vh;
    max-width:100%;
    width: auto !important;
    margin: auto;
}
.lightbox-carousel .carousel-control-next-icon:before, .lightbox .carousel-control-prev-icon:before {
    display:none;
}
.modal.lightbox .modal-dialog {
    max-width: 1140px;
}
/*#components/images#*/
.bg-image {
    background-position: center;
    background-size: cover;
    max-width: 2560px;
    margin: auto;
}
/*#components/mask#*/
 .mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.3);
}
 .mask-light {
    background-color: rgba(255, 255, 255, 0.85) !important;
 }
.mask-white {
    background-color: rgba(255, 255, 255, 0.92) !important;
}
/*#grid#*/
 section {
    margin-bottom: 3rem;
}
/*#override#*/
.col-lg-4 > .px-lg-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
.p-0.p-4 {
    padding:0 !important;
}
.ps-0.p-4 {
    padding-left:0 !important;
}
/*#grid/min#*/
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}
/* Medium devices (tablets, 768px and up) */
 @media (min-width: 768px) {
    footer .list-group-horizontal-md > .list-group-item + .list-group-item {
        border-left: 1px solid #fff;
    }
    footer .list-group-item {
        padding: 0 1rem;
    }
    .modal-dialog {
        max-width: 650px;
    }
}
/* Large devices (desktops, 992px and up) */
 @media (min-width: 992px) {
    .navbar .nav .dropdown .nav-link.show:before {
        content: "";
        width: 0;
        height: 0;
        border-left: 11px solid transparent;
        border-right: 11px solid transparent;
        border-bottom: 22px solid #0076BC;
        position: absolute;
        left: 50%;
        bottom: calc(-1.5rem - 5px);
       /* same as margin top of dropdown-menu */
        z-index: 10;
    }
    .navbar .dropdown-menu.container .dropdown-megamenu {
        column-count: 2;
        column-gap: calc(var(--bs-gutter-x) * 1.5);
    }
    .navbar .dropdown-menu.container .dropdown-megamenu > li {
       /*display: grid;
        grid-template-rows: 1fr auto;
        */
        break-inside: avoid;
    }
    .navbar .dropdown-menu .col-lg-4 .card {
        border: 1px solid #bdbbc0;
    }
    .navbar .dropdown-menu .col-lg-4 .card:hover {
        background-color: #F7F7F7 !important;
    }
    .navbar .dropdown-menu .col-lg-4:nth-of-type(n+4) .card {
        border-top: 0;
    }
    .navbar .dropdown-menu.container .dropdown-megamenu .dropdown-item {
        border-top: 1px solid #bdbbc0;
        border-bottom: 1px solid #bdbbc0;
        padding-left: 1rem;
        padding-right: 1rem;
        grid-row: 1 / -1;
        grid-column: 1;
        margin-top: -1px;
        background:#fff !important;
    }
    .col-lg-4 > .my-4:first-child {
        margin-top: 0px !important;
    }
    .card-video .order-lg-1 {
        position:absolute;
    }

    footer .dropup .link-primary.show {
        position: relative;
    }
    footer .dropup .link-primary.show:before {
        content: "";
        width: 0;
        height: 0;
        border-left: 11px solid transparent;
        border-right: 11px solid transparent;
        border-top: 22px solid #0076BC;
        position: absolute;
        left: 25%;
        top: -32px;
       /* same as margin top of dropdown-menu */
        z-index: 10;
    }
}
;
/* X-Large devices (large desktops, 1200px and up) */
 @media (min-width: 1200px) {
}
/* XX-Large devices (larger desktops, 1400px and up) */
 @media (min-width: 1400px) {
}
/*#grid/max#*/
/* X-Large devices (large desktops, less than 1400px) */
 @media (max-width: 1399.98px) {
}
/* Large devices (desktops, less than 1200px) */
 @media (max-width: 1199.98px) {
    html, body {
        font-size: 16px !important;
    }
    .navbar .dropdown-menu .card-img-top {
        height: 50px;
    }
}
/* Medium devices (tablets, less than 992px) */
 @media (max-width: 991.98px) {
    html, body {
        font-size: 14px !important;
    }
    header {
        /*border-bottom: 3px solid #0076bc;*/
    }
    .offcanvas-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 100%;
        width: 100%;
        padding: 0 15px;
        overflow-y: auto;
        visibility: hidden;
        background-color: #fff;
        transition: transform .3s ease-in-out, visibility .3s ease-in-out;
        z-index: 1000;
    }
    .offcanvas-collapse.open {
        visibility: visible;
        transform: translateX(-100%);
    }
    .offcanvas-header {
        padding: 1.5rem var(--bs-gutter-x,.75rem);
        max-width: 720px;
        margin: auto;
    }
    .navbar-brand {
        width: 150px;
        margin: 0;
    }
    .navbar-toggler {
        box-shadow: none !important;
        border: none !important;
        width: 32px;
        padding: 0;
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navbar .nav .nav-link {
        padding: 15px var(--bs-gutter-x,.75rem);
        font-size: 13px;
        line-height: 12px;
        border-bottom: 1px solid #bdbbc0;
        max-width: 720px;
        margin: auto;
    }
    .navbar .nav .dropdown > .nav-link:after {
        font-family: "Font Awesome 5 Pro";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
       /*content: "\f0fe";
        version 1 */
        content: "\f067";
        font-weight: 500;
        float: right;
    }
    .navbar .nav .dropdown > .nav-link.show:after {
       /*content: "\f146";
        version 1 */
        content: "\f068";
    }
    .navbar .nav > .dropdown > .dropdown-menu {
        position: relative;
        margin-top: 0;
        border: none;
        padding: 15px;
        max-width: unset;
    }
    .navbar .nav > .dropdown:first-child > .nav-link {
        border-top: 1px solid #bdbbc0;
    }
    .navbar .nav > .dropdown > .dropdown-menu.show {
        border-bottom: 1px solid #bdbbc0;
    }
    .navbar .nav > .dropdown:last-child > .dropdown-menu.show {
        border: none;
    }
    .navbar .dropdown-item, .navbar .dropdown-link, .navbar .dropdown-header, .navbar .dropdown-text {
        font-size: 13px;
    }
    .navbar .dropdown-menu .dropdown-megamenu {
        margin-bottom: 0;
    }
    .navbar .dropdown-menu .dropdown-megamenu .dropdown-item, .navbar .dropdown-menu .card, .navbar .dropdown-menu .dropdown-text {
        padding: 15px 0 0 0;
    }
    .navbar .dropdown-menu .dropdown-megamenu > .dropdown-item:first-child, .navbar .dropdown-menu.card-dropdown > .row > div:nth-of-type(2) > .card, .navbar .dropdown-menu.card-dropdown > .row > div:nth-of-type(3) > .card, .navbar .dropdown-menu > .row > div:first-child .dropdown-text {
        padding-top: 0;
    }
    .navbar .dropdown-menu .card-header, .navbar .dropdown-menu .card-body, .navbar .dropdown-menu .card-footer {
        height: unset;
        padding-left: 0;
        padding-right: 0;
    }
    .navbar .dropdown-menu .card-text, .navbar .dropdown-menu .card-title {
        font-size: 13px;
        line-height: 1.2;
    }
    .card.card-services .card-body {
        padding-bottom: 2rem;
    }
    .bg-image .img-fluid {
        width: auto !important;
        max-width: unset;
        height: 200px !important;
    }
    .card-hero {
        min-height: unset;
        background: transparent !important;
    }
    .card-hero.card-hero-full:before {
        display: none;
    }
    .card-hero .card-img, .bg-image .img-fluid {
        position: relative;
        top: 0;
        left: 50%;
        height:40vw;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    .card-hero .card-img-overlay {
        clip-path: unset;
        position: static;
    }
    .card .card-img-overlay .card-text {
        font-size: 14px;
        line-height: 21px;
    }
    .img-fill {
        width:100%;
        min-width:unset;
        min-height:unset;
    }
    nav.container[aria-label="subnav"] {
        max-width:100%;
    }
    section .nav .nav-item {
        margin-right:0;
    }
    footer .list-group-item a {
        font-size: 12px;
    }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .container-fluid, .container-lg {
        padding-left: 0;
        padding-right: 0;
    }
    .container, .container-md, .container-sm, .container-xl, .container-xxl {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar, .navbar .offcanvas-header {
        padding: 15px 0;
    }
    .navbar-brand {
        width: 120px;
    }
    .navbar .dropdown-menu.card-dropdown > .row > div:nth-of-type(3) > .card {
        padding-top: 15px;
    }
    .p-4 p:last-child, .my-4 ul:last-child {
        margin-bottom:1rem;
    }
    .card-hero .card-img-overlay, .card.card-services .card-body {
        padding: 15px;
    }
    .card.card-panel .card-body {
        padding: 1.5rem;
    }
    .card.position-relative > .card-title.position-absolute {
        right:2rem;
    }
    .mainHeroText {
        clip-path: unset;
    }
    .btn-group {
        display: inline-block;
    }
    #carouselPartners .carousel-item {
        column-count: 2;
    }
    .card.card-icon .card-header img {
        width: 60px;
    }
    .card.card-icon .bg-ltgrey, .card.card-icon .card-body {
        padding-left:60px;
    }
    /* Mobile: Adjust text truncation for profile cards */
    .card.card-profile .text-truncate {
        max-height:92px;
    }
    .card.card-profile .text-truncate.show {
        max-height:unset;
    }
    /* Mobile: Small images and titles for profile cards */
    .card.card-profile img {
        max-width: 100%;
    }
    .card.card-profile .card-title {
        font-size: 0.9rem;
    }
    .card.card-profile .card-subtitle {
        font-size: 0.85rem;
    }
    section .nav .nav-item {
        width:100%;
        display:block;
    }
    section .nav .nav-item .nav-link {
        border-bottom: 1px #dee2e6 solid;
    }
    section .nav .nav-item:last-child .nav-link {
        border:none;
    }
    section .nav .nav-item .nav-link.active {
        border-bottom: 4px #959398 solid;
    }
    footer .list-group {
        display: block;
    }
    footer .list-group-item {
        display: inline;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
 @media (max-width: 575.98px) {
    #carouselPartners .carousel-item {
        column-count: 1;
    }
}

/*#components/recaptcha#*/
/* Fix reCAPTCHA badge positioning */
/*.grecaptcha-badge {
    visibility: visible !important;
    z-index: 1000;
    bottom: 14px !important;
    left: 14px !important;
    right: auto !important;
    position: fixed !important;
}*/

/* Ensure reCAPTCHA is visible but not intrusive */
/*@media (max-width: 767.98px) {
    .grecaptcha-badge {
        bottom: 60px !important;
        left: 0 !important;
        right: auto !important;
    }
}*/

.grecaptcha-badge {
    right: auto !important;
    left: calc(-260px + 34px) !important;
    bottom: 120px !important;
    z-index: 9999 !important;
    transition: left .25s ease !important;
}

    .grecaptcha-badge:hover {
        left: 12px !important;
    }

@media (max-width: 991.98px) {
    .grecaptcha-badge {
        right: 12px !important;
        left: auto !important;
        bottom: 90px !important; /* evita tapar botones */
        z-index: 9999 !important;
    }
}
/*fix for icon spacing issue*/
.crx-svcCard__fa:before {
    font-size: 18px;
}